summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-12-23 13:09:32 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-12-23 13:09:32 -0800
commit45775797c5f50dc56370c75c3244ea0e83ab4832 (patch)
tree92b067e463370751e7c35ad626062b9d641842fc /src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
parent5c38b4c0564f75a845678005c474df2073113ce7 (diff)
parent1b87e9b8d74afe71b70d842ee435523e7f1aad46 (diff)
downloadDotNetOpenAuth-45775797c5f50dc56370c75c3244ea0e83ab4832.zip
DotNetOpenAuth-45775797c5f50dc56370c75c3244ea0e83ab4832.tar.gz
DotNetOpenAuth-45775797c5f50dc56370c75c3244ea0e83ab4832.tar.bz2
Merge branch 'v3.4' into oauth2
Conflicts: samples/OAuthServiceProvider/Code/DatabaseTokenManager.cs samples/OAuthServiceProvider/Code/OAuthToken.cs src/DotNetOpenAuth/Messaging/MessagingStrings.resx
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 54ed37e..479375a 100644
--- a/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth/ChannelElements/OAuthChannelTests.cs
@@ -125,7 +125,7 @@ namespace DotNetOpenAuth.Test.OAuth.ChannelElements {
OutgoingWebResponse response = this.channel.PrepareResponse(message);
Assert.AreSame(message, response.OriginalMessage);
Assert.AreEqual(HttpStatusCode.OK, response.Status);
- Assert.AreEqual(0, response.Headers.Count);
+ Assert.AreEqual(2, response.Headers.Count);
NameValueCollection body = HttpUtility.ParseQueryString(response.Body);
Assert.AreEqual("15", body["age"]);