Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit 0cd3e6f

Browse files
committed
Fixes another test. Down to 8 failures.
1 parent afcdf6e commit 0cd3e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ private async Task ParameterizedAuthenticationTestAsync(Protocol protocol, bool
202202
if (positive) {
203203
response = new PositiveAssertionResponse(request);
204204
} else {
205-
response = new NegativeAssertionResponse(request.Version, request.ReturnTo, request.Mode);
205+
response = await NegativeAssertionResponse.CreateAsync(request, CancellationToken.None, op.Channel);
206206
}
207207

208208
return await op.Channel.PrepareResponseAsync(response);

0 commit comments

Comments
 (0)