summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-15 15:08:24 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-15 15:08:24 -0700
commite93faf90701f5bd7376535b32b92f059552b17b5 (patch)
tree904f79a1ad8ddfa288bc58f2d8c45a890162b044 /src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
parent70dcf0ab0a29ab3f0383303cbd1db80b1454b9a7 (diff)
parentb6ca73ea7ee62ef7dd112ddbd77b606684508fa4 (diff)
downloadDotNetOpenAuth-e93faf90701f5bd7376535b32b92f059552b17b5.zip
DotNetOpenAuth-e93faf90701f5bd7376535b32b92f059552b17b5.tar.gz
DotNetOpenAuth-e93faf90701f5bd7376535b32b92f059552b17b5.tar.bz2
Merge branch 'oauth10a' into v3.0
Diffstat (limited to 'src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs b/src/DotNetOpenAuth.Test/OAuth/ProtocolTests.cs
index 6a2551a..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]
@@ -23,12 +23,12 @@ namespace DotNetOpenAuth.Test {
[TestMethod]
public void AuthorizationHeaderScheme() {
- Assert.AreEqual("OAuth", Protocol.V10.AuthorizationHeaderScheme);
+ Assert.AreEqual("OAuth", Protocol.AuthorizationHeaderScheme);
}
[TestMethod]
public void ParameterPrefix() {
- Assert.AreEqual("oauth_", Protocol.V10.ParameterPrefix);
+ Assert.AreEqual("oauth_", Protocol.ParameterPrefix);
}
}
}