summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-01-21 09:16:05 -0800
committerAndrew <andrewarnott@gmail.com>2009-01-21 09:16:05 -0800
commitcf1185c4891a509386bffd7e01fedce42d970cde (patch)
treeb85bde762f75dbe29af9db65fdecf33c7f27560a /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
parentf2c098cf7c700e3e9dc87316608a50de48222e19 (diff)
downloadDotNetOpenAuth-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.cs2
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);