diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-13 23:50:19 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-13 23:50:19 -0700 |
commit | cb50729bf70ed1230e4a6868a758554b2e02d238 (patch) | |
tree | c7c5b2d765748cc243886303cdfedcb03017e3c0 | |
parent | 02fb9d5fa176fa7442205244581c1833d914c234 (diff) | |
download | DotNetOpenAuth-cb50729bf70ed1230e4a6868a758554b2e02d238.zip DotNetOpenAuth-cb50729bf70ed1230e4a6868a758554b2e02d238.tar.gz DotNetOpenAuth-cb50729bf70ed1230e4a6868a758554b2e02d238.tar.bz2 |
Fixed build break caused by ServiceEndpoint.endpoint field's rename.
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs index 7701090..85909fa 100644 --- a/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/RelyingParty/PositiveAuthenticationResponseTests.cs @@ -38,7 +38,7 @@ namespace DotNetOpenAuth.Test.OpenId.RelyingParty { Assert.AreEqual(AuthenticationStatus.Authenticated, authResponse.Status); Assert.IsNull(authResponse.Exception); Assert.AreEqual<string>(assertion.ClaimedIdentifier, authResponse.ClaimedIdentifier); - Assert.AreEqual<string>(authResponseAccessor.endpoint.FriendlyIdentifierForDisplay, authResponse.FriendlyIdentifierForDisplay); + Assert.AreEqual<string>(authResponse.Endpoint.FriendlyIdentifierForDisplay, authResponse.FriendlyIdentifierForDisplay); Assert.AreSame(extension, authResponse.GetUntrustedExtension(typeof(ClaimsResponse))); Assert.AreSame(extension, authResponse.GetUntrustedExtension<ClaimsResponse>()); Assert.IsNull(authResponse.GetCallbackArgument("a")); |