diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-18 22:20:41 -0600 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2008-08-18 22:20:41 -0600 |
commit | aa75148d329267e1525a9568d25a0f95e411f3bb (patch) | |
tree | d4af48085901d261da870e4a1f0362c3070f5313 /src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs | |
parent | 097276044aff2c9474b2aea7e602a5d4aec423bb (diff) | |
download | DotNetOpenAuth-aa75148d329267e1525a9568d25a0f95e411f3bb.zip DotNetOpenAuth-aa75148d329267e1525a9568d25a0f95e411f3bb.tar.gz DotNetOpenAuth-aa75148d329267e1525a9568d25a0f95e411f3bb.tar.bz2 |
Moved IRequest.RelyingPartyVersion to IAuthenticationRequest.RelyingPartyVersion.
Fxcop fixes.
Diffstat (limited to 'src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs')
-rw-r--r-- | src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs b/src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs index 5aef853..37e9ab3 100644 --- a/src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs +++ b/src/DotNetOpenId.Test/RelyingParty/OpenIdRelyingPartyTest.cs @@ -388,7 +388,7 @@ namespace DotNetOpenId.Test.RelyingParty { MockIdentifier id = TestSupport.GetMockIdentifier(TestSupport.Scenarios.AutoApproval, ProtocolVersion.V11);
var rp = TestSupport.CreateRelyingParty(null);
- rp.Settings.MinimumRequiredOpenIDVersion = ProtocolVersion.V20;
+ rp.Settings.MinimumRequiredOpenIdVersion = ProtocolVersion.V20;
rp.CreateRequest(id, TestSupport.Realm, TestSupport.ReturnTo);
}
}
|