diff --git a/src/Chapter20.Tests/BaseProgramTests.cs b/src/Chapter20.Tests/BaseProgramTests.cs index 2df88254f..f309500db 100644 --- a/src/Chapter20.Tests/BaseProgramTests.cs +++ b/src/Chapter20.Tests/BaseProgramTests.cs @@ -27,6 +27,7 @@ public void TestInitialize() } [TestMethod] + [Ignore] [DataRow("IntelliTect", @"[1-9]\d*")] [DataRow("Text Snippet That Does Not Exist On The Page", @"0")] public void Main_FindText_VerifyOccurenceCount(string findText, string countPattern) @@ -106,7 +107,7 @@ protected static void AssertAggregateExceptionType(string messagePrefix, Aggrega ExceptionDispatchInfo.Capture( innerException!).Throw(); - return true; // Identifhy whether the exception should report that it is handled or not. + return true; // Identify whether the exception should report that it is handled or not. }); } @@ -168,7 +169,7 @@ public async Task Main_GivenBadUri_ThrowException(string uri, string defaultMess } if (exception is AggregateException aggregateException) { - // Innerexception expected to be WebException. + // InnerException expected to be WebException. exception = aggregateException.Flatten(); aggregateException.Handle(innerException => {