summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/ChannelElements
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-11-23 23:04:56 -0800
committerAndrew <andrewarnott@gmail.com>2008-11-23 23:04:56 -0800
commite81621138e95624e12db5667c5720cde1f0475d9 (patch)
tree80a8ca1fe36611b99ef790801d90922f489d4aad /src/DotNetOpenAuth.Test/OpenId/ChannelElements
parent87af9a2cf5efade047cef5966d6d05fc40592a85 (diff)
downloadDotNetOpenAuth-e81621138e95624e12db5667c5720cde1f0475d9.zip
DotNetOpenAuth-e81621138e95624e12db5667c5720cde1f0475d9.tar.gz
DotNetOpenAuth-e81621138e95624e12db5667c5720cde1f0475d9.tar.bz2
Added YADIS and other discovery, XRDS, untrusted web requests.
Hundreds of StyleCop messages and some FxCop as well. Some refactoring definitely went into the new files from their DotNetOpenId origins, but there is much more to do.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
index cd4b4b6..304473c 100644
--- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/OpenIdChannelTests.cs
@@ -79,7 +79,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements {
{ "var1", "value1" },
{ "var2", "value2" },
};
- Response response = new Response {
+ var response = new DirectWebResponse {
ResponseStream = new MemoryStream(KeyValueFormEncoding.GetBytes(fields)),
};
Assert.IsTrue(MessagingUtilities.AreEquivalent(fields, this.accessor.ReadFromResponseInternal(response)));