diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-25 22:32:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-25 22:32:45 -0700 |
commit | 0cd3e6f74466257f5ff87fef9673ef83c794f965 (patch) | |
tree | 515a803bdbc5ea5291709ef237690f3d4af7acb4 /src | |
parent | afcdf6efb389389031e0a9286c57ae3e2f8e9809 (diff) | |
download | DotNetOpenAuth-0cd3e6f74466257f5ff87fef9673ef83c794f965.zip DotNetOpenAuth-0cd3e6f74466257f5ff87fef9673ef83c794f965.tar.gz DotNetOpenAuth-0cd3e6f74466257f5ff87fef9673ef83c794f965.tar.bz2 |
Fixes another test. Down to 8 failures.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs b/src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs index c4da264..6e1fa40 100644 --- a/src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs @@ -202,7 +202,7 @@ namespace DotNetOpenAuth.Test.OpenId { if (positive) { response = new PositiveAssertionResponse(request); } else { - response = new NegativeAssertionResponse(request.Version, request.ReturnTo, request.Mode); + response = await NegativeAssertionResponse.CreateAsync(request, CancellationToken.None, op.Channel); } return await op.Channel.PrepareResponseAsync(response); |