diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-31 22:23:44 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-31 22:23:44 -0700 |
commit | e7cb9e9c127da70ec1a54969ae7770c1b7ce43c3 (patch) | |
tree | 6faae467181908d766bdbcfe666f51a13f46cf84 /src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs | |
parent | 434668c1e32fcc0087b220067bb1e4eec2ccbca9 (diff) | |
download | DotNetOpenAuth-e7cb9e9c127da70ec1a54969ae7770c1b7ce43c3.zip DotNetOpenAuth-e7cb9e9c127da70ec1a54969ae7770c1b7ce43c3.tar.gz DotNetOpenAuth-e7cb9e9c127da70ec1a54969ae7770c1b7ce43c3.tar.bz2 |
Fixed build break from recent change to ExtensionsBindingElement.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs')
-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 f88af0d..af3b1b1 100644 --- a/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/AssociationHandshakeTests.cs @@ -375,8 +375,8 @@ namespace DotNetOpenAuth.Test.OpenId { var unencryptedResponse = (AssociateUnencryptedResponse)associateSuccessfulResponse; } } else { - Assert.IsNull(associationManagerAccessor.associationStore.GetAssociation(opDescription.Endpoint, new SecuritySettings(false))); - Assert.IsNull(coordinator.Provider.AssociationStore.GetAssociation(AssociationRelyingPartyType.Smart, new SecuritySettings(true))); + Assert.IsNull(associationManagerAccessor.associationStore.GetAssociation(opDescription.Endpoint, new RelyingPartySecuritySettings())); + Assert.IsNull(coordinator.Provider.AssociationStore.GetAssociation(AssociationRelyingPartyType.Smart, new ProviderSecuritySettings())); } } } |