diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-06 14:55:50 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-06 15:01:02 -0800 |
commit | 58669d51de6db631c3b56a53e4a7aa5a384e5fec (patch) | |
tree | 25c1688096a20b9b2094ec1fd11697ae651b30d8 /src/DotNetOpenAuth.Test/OpenId/ChannelElements | |
parent | 83384150efcda894097e9e2a4448994361b8a626 (diff) | |
download | DotNetOpenAuth-58669d51de6db631c3b56a53e4a7aa5a384e5fec.zip DotNetOpenAuth-58669d51de6db631c3b56a53e4a7aa5a384e5fec.tar.gz DotNetOpenAuth-58669d51de6db631c3b56a53e4a7aa5a384e5fec.tar.bz2 |
Refactoring around Provider's IRequest to process responses differently.
This is a step toward serializable IRequest objects.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs | 4 |
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(); } |