summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-25 22:32:45 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-25 22:32:45 -0700
commit0cd3e6f74466257f5ff87fef9673ef83c794f965 (patch)
tree515a803bdbc5ea5291709ef237690f3d4af7acb4 /src
parentafcdf6efb389389031e0a9286c57ae3e2f8e9809 (diff)
downloadDotNetOpenAuth-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.cs2
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);