summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-10-20 22:03:57 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-10-20 22:03:57 -0700
commit2bd47400defb062c37eecb04c4706bb61cae0e5f (patch)
tree5b4d4ae551b1d5a1b3c4be0a017c2062fbbcef41 /src
parent3c8178c31df9c5762796bd27a33d7aca4d234569 (diff)
downloadDotNetOpenAuth-2bd47400defb062c37eecb04c4706bb61cae0e5f.zip
DotNetOpenAuth-2bd47400defb062c37eecb04c4706bb61cae0e5f.tar.gz
DotNetOpenAuth-2bd47400defb062c37eecb04c4706bb61cae0e5f.tar.bz2
Fixed failing unit test.
Diffstat (limited to 'src')
-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"]);