summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-05 16:04:35 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-05 16:04:35 -0800
commitc282f35b8ccab78f6782d17c4ffab2b1ed96e5d2 (patch)
treee3c41cfcd6bb9c905b2648ea08cda7ca0c6edd4a /src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
parentf02074e93cd1a1bd8b5b013c51fe26c0fb332bc6 (diff)
downloadDotNetOpenAuth-c282f35b8ccab78f6782d17c4ffab2b1ed96e5d2.zip
DotNetOpenAuth-c282f35b8ccab78f6782d17c4ffab2b1ed96e5d2.tar.gz
DotNetOpenAuth-c282f35b8ccab78f6782d17c4ffab2b1ed96e5d2.tar.bz2
Added OpenID Provider downlevel protection for 1.x Relying Parties and turning it on by default.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Configuration/SectionTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Configuration/SectionTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
index b49ada2..73aad6d 100644
--- a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
+++ b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
@@ -50,7 +50,7 @@ namespace DotNetOpenAuth.Test.Configuration {
var op = DotNetOpenAuthSection.Configuration.OpenId.Provider;
Assert.IsNull(op.ApplicationStore.CustomType);
- Assert.IsFalse(op.SecuritySettings.ProtectDownlevelReplayAttacks);
+ Assert.IsTrue(op.SecuritySettings.ProtectDownlevelReplayAttacks);
Assert.AreEqual(7, op.SecuritySettings.MinimumHashBitLength);
Assert.AreEqual(302, op.SecuritySettings.MaximumHashBitLength);