Remove stray Console.Writes from tests.

This commit is contained in:
Chris R 2015-06-05 12:18:53 -07:00
parent c6230f5de2
commit 5947b07873
1 changed files with 0 additions and 2 deletions

View File

@ -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=");
}