diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-06 16:46:15 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-06 16:46:15 -0700 |
commit | 22366139f5bc3b5d308d78b6620b517bc794042c (patch) | |
tree | 45c5613f0e528f6b827441fe6671f9a4c89a3920 /src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs | |
parent | ddf0b1632e9ccceca514bfee6f65c5786b078dcd (diff) | |
download | DotNetOpenAuth-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.cs | 2 |
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] |