diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-24 21:37:05 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-24 21:37:05 -0700 |
commit | 742e5d61f34454f7a61aa7c7594e0af366549635 (patch) | |
tree | 1fccb0f8fc435a147e9183f70cd3cee2417881c5 /src | |
parent | 725b9149d030a4329b3d9d97234bda6d20643b92 (diff) | |
download | DotNetOpenAuth-742e5d61f34454f7a61aa7c7594e0af366549635.zip DotNetOpenAuth-742e5d61f34454f7a61aa7c7594e0af366549635.tar.gz DotNetOpenAuth-742e5d61f34454f7a61aa7c7594e0af366549635.tar.bz2 |
Fixes Untrusted delegating handler faults in failing test.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs b/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs index ce6b299..6e3d7dc 100644 --- a/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs @@ -25,12 +25,12 @@ namespace DotNetOpenAuth.Test.OpenId { [Test] public async Task AssociateUnencrypted() { - await this.ParameterizedAssociationTestAsync(new Uri("https://host")); + await this.ParameterizedAssociationTestAsync(OPUriSsl); } [Test] public async Task AssociateDiffieHellmanOverHttp() { - await this.ParameterizedAssociationTestAsync(new Uri("http://host")); + await this.ParameterizedAssociationTestAsync(OPUri); } /// <summary> |