From 2523d5d9eac65dfdec666c6b24c21d9d94921ee6 Mon Sep 17 00:00:00 2001 From: Javier Calvarro Nelson Date: Mon, 2 Jun 2014 15:01:30 -0700 Subject: [PATCH] Addressed feedback from @rynowak --- test/Microsoft.AspNet.Mvc.FunctionalTests/BasicTests.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/Microsoft.AspNet.Mvc.FunctionalTests/BasicTests.cs b/test/Microsoft.AspNet.Mvc.FunctionalTests/BasicTests.cs index 55735229aa..94b73adfcc 100644 --- a/test/Microsoft.AspNet.Mvc.FunctionalTests/BasicTests.cs +++ b/test/Microsoft.AspNet.Mvc.FunctionalTests/BasicTests.cs @@ -60,8 +60,6 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests // The host is not important as everything runs in memory and tests are isolated from each other. var result = await client.GetAsync("http://localhost/"); - // Guard - Assert.NotNull(result); var responseContent = await result.ReadBodyAsStringAsync(); // Assert @@ -80,8 +78,6 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests // Act var result = await client.GetAsync("http://localhost/Home/PlainView"); - // Guard - Assert.NotNull(result); var responseContent = await result.ReadBodyAsStringAsync(); // Assert