From 5947b078736d3eb66fe67d78dc6c31041ce4dc77 Mon Sep 17 00:00:00 2001 From: Chris R Date: Fri, 5 Jun 2015 12:18:53 -0700 Subject: [PATCH] Remove stray Console.Writes from tests. --- .../Google/GoogleMiddlewareTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Microsoft.AspNet.Authentication.Test/Google/GoogleMiddlewareTests.cs b/test/Microsoft.AspNet.Authentication.Test/Google/GoogleMiddlewareTests.cs index 0b02b78e91..0bbd57213c 100644 --- a/test/Microsoft.AspNet.Authentication.Test/Google/GoogleMiddlewareTests.cs +++ b/test/Microsoft.AspNet.Authentication.Test/Google/GoogleMiddlewareTests.cs @@ -74,7 +74,6 @@ namespace Microsoft.AspNet.Authentication.Google options.ClientSecret = "Test Secret"; }); var transaction = await server.SendAsync("https://example.com/challenge"); - Console.WriteLine(transaction.SetCookie); transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google="); } @@ -88,7 +87,6 @@ namespace Microsoft.AspNet.Authentication.Google options.AutomaticAuthentication = true; }); var transaction = await server.SendAsync("https://example.com/401"); - Console.WriteLine(transaction.SetCookie); transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google="); }