summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-11-24 22:54:58 -0800
committerAndrew <andrewarnott@gmail.com>2008-11-24 22:54:58 -0800
commit85c813a005a2494bb71066215de8db1d7ab056d2 (patch)
tree0475c0c2b2cf5861a9c5bb2ccb89ad8e5d7bab9a /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
parent866385f5426835483eea4d701fe07388dff3f3c3 (diff)
downloadDotNetOpenAuth-85c813a005a2494bb71066215de8db1d7ab056d2.zip
DotNetOpenAuth-85c813a005a2494bb71066215de8db1d7ab056d2.tar.gz
DotNetOpenAuth-85c813a005a2494bb71066215de8db1d7ab056d2.tar.bz2
A touch of refactoring and C# warning resolution.
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 73542b4..07db3f6 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"),
};
- Response response = this.channel.Send(message);
+ UserAgentResponse response = this.channel.Send(message);
Assert.AreSame(message, response.OriginalMessage);
Assert.AreEqual(HttpStatusCode.OK, response.Status);
Assert.AreEqual(0, response.Headers.Count);