Temporarily skipping a couple of tests to work around Url encoder bug
https://github.com/aspnet/HttpAbstractions/issues/231
This commit is contained in:
parent
42436d3a7e
commit
c4aa387cd2
|
|
@ -77,7 +77,7 @@ namespace Microsoft.AspNet.Authentication.Google
|
||||||
query.ShouldContain("&scope=" + Uri.EscapeDataString("openid profile email"));
|
query.ShouldContain("&scope=" + Uri.EscapeDataString("openid profile email"));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "Failing due to : https://github.com/aspnet/HttpAbstractions/issues/231")]
|
||||||
public async Task ChallengeWillUseOptionsScope()
|
public async Task ChallengeWillUseOptionsScope()
|
||||||
{
|
{
|
||||||
var server = CreateServer(options =>
|
var server = CreateServer(options =>
|
||||||
|
|
@ -92,7 +92,7 @@ namespace Microsoft.AspNet.Authentication.Google
|
||||||
query.ShouldContain("&scope=" + Uri.EscapeDataString("https://www.googleapis.com/auth/plus.login"));
|
query.ShouldContain("&scope=" + Uri.EscapeDataString("https://www.googleapis.com/auth/plus.login"));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "Failing due to : https://github.com/aspnet/HttpAbstractions/issues/231")]
|
||||||
public async Task ChallengeWillUseAuthenticationPropertiesAsParameters()
|
public async Task ChallengeWillUseAuthenticationPropertiesAsParameters()
|
||||||
{
|
{
|
||||||
var server = CreateServer(options =>
|
var server = CreateServer(options =>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue