diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-12 22:44:32 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-12 22:44:32 -0700 |
commit | 3eebbb8d1886f2f15b78fd2d0113479808507d9d (patch) | |
tree | a98a74369e196688911a1bd1b7729e2da2200a7a | |
parent | 63d87be4628a4fae4b65da062438f145f9ffc6df (diff) | |
download | DotNetOpenAuth-3eebbb8d1886f2f15b78fd2d0113479808507d9d.zip DotNetOpenAuth-3eebbb8d1886f2f15b78fd2d0113479808507d9d.tar.gz DotNetOpenAuth-3eebbb8d1886f2f15b78fd2d0113479808507d9d.tar.bz2 |
Ooops... fixed build break in test caused by c70d5d24acf.
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs index ce95038..2c7e74c 100644 --- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/AuthenticationRequestTests.cs @@ -62,7 +62,7 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty { [TestMethod] public void ProviderVersion() { var authRequest = this.CreateAuthenticationRequest(this.claimedId, this.claimedId); - Assert.AreEqual(this.protocol.Version, authRequest.ProviderVersion); + Assert.AreEqual(this.protocol.Version, authRequest.endpoint.Protocol.Version); } /// <summary> |