Remove stray Console.Writes from tests.
This commit is contained in:
parent
c6230f5de2
commit
5947b07873
|
|
@ -74,7 +74,6 @@ namespace Microsoft.AspNet.Authentication.Google
|
||||||
options.ClientSecret = "Test Secret";
|
options.ClientSecret = "Test Secret";
|
||||||
});
|
});
|
||||||
var transaction = await server.SendAsync("https://example.com/challenge");
|
var transaction = await server.SendAsync("https://example.com/challenge");
|
||||||
Console.WriteLine(transaction.SetCookie);
|
|
||||||
transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google=");
|
transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google=");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -88,7 +87,6 @@ namespace Microsoft.AspNet.Authentication.Google
|
||||||
options.AutomaticAuthentication = true;
|
options.AutomaticAuthentication = true;
|
||||||
});
|
});
|
||||||
var transaction = await server.SendAsync("https://example.com/401");
|
var transaction = await server.SendAsync("https://example.com/401");
|
||||||
Console.WriteLine(transaction.SetCookie);
|
|
||||||
transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google=");
|
transaction.SetCookie.Single().ShouldContain(".AspNet.Correlation.Google=");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue