summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs
index 764e830..a19df2a 100644
--- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs
@@ -125,10 +125,10 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements {
op => {
RegisterMockExtension(op.Channel);
op.Channel.Send(CreateResponseWithExtensions(protocol));
- op.GetRequest().Response.Send(); // check_auth
+ op.SendResponse(op.GetRequest()); // check_auth
op.SecuritySettings.SignOutgoingExtensions = false;
op.Channel.Send(CreateResponseWithExtensions(protocol));
- op.GetRequest().Response.Send(); // check_auth
+ op.SendResponse(op.GetRequest()); // check_auth
});
coordinator.Run();
}