diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-01-21 09:16:05 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2009-01-21 09:16:05 -0800 |
commit | cf1185c4891a509386bffd7e01fedce42d970cde (patch) | |
tree | b85bde762f75dbe29af9db65fdecf33c7f27560a /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs | |
parent | f2c098cf7c700e3e9dc87316608a50de48222e19 (diff) | |
download | DotNetOpenAuth-cf1185c4891a509386bffd7e01fedce42d970cde.zip DotNetOpenAuth-cf1185c4891a509386bffd7e01fedce42d970cde.tar.gz DotNetOpenAuth-cf1185c4891a509386bffd7e01fedce42d970cde.tar.bz2 |
Renamed Channel.Send method to Channel.PrepareResponse and then added a new Send method.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs index 10e9795..a74a622 100644 --- a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs +++ b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs @@ -85,7 +85,7 @@ namespace DotNetOpenAuth.Test.ChannelElements { Location = new Uri("http://hostb/pathB"), }; - UserAgentResponse response = this.channel.Send(message); + UserAgentResponse response = this.channel.PrepareResponse(message); Assert.AreSame(message, response.OriginalMessage); Assert.AreEqual(HttpStatusCode.OK, response.Status); Assert.AreEqual(0, response.Headers.Count); |