summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-06 16:46:15 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-06 16:46:15 -0700
commit22366139f5bc3b5d308d78b6620b517bc794042c (patch)
tree45c5613f0e528f6b827441fe6671f9a4c89a3920 /src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
parentddf0b1632e9ccceca514bfee6f65c5786b078dcd (diff)
downloadDotNetOpenAuth-22366139f5bc3b5d308d78b6620b517bc794042c.zip
DotNetOpenAuth-22366139f5bc3b5d308d78b6620b517bc794042c.tar.gz
DotNetOpenAuth-22366139f5bc3b5d308d78b6620b517bc794042c.tar.bz2
Fixed some failing unit tests and some associated product bugs.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs b/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
index a6c7306..ce8070b 100644
--- a/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
+++ b/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
@@ -12,7 +12,7 @@ namespace DotNetOpenAuth.Test {
public class ProtocolTests {
[TestMethod]
public void Default() {
- Assert.AreSame(Protocol.V10, Protocol.Default);
+ Assert.AreSame(Protocol.V10a, Protocol.Default);
}
[TestMethod]