summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/Configuration/SectionTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Configuration/SectionTests.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
index e423053..0caf17a 100644
--- a/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
+++ b/src/DotNetOpenAuth.Test/Configuration/SectionTests.cs
@@ -31,12 +31,12 @@ namespace DotNetOpenAuth.Test.Configuration {
[TestCase]
public void OpenIdMaxAuthenticationTime() {
- Assert.AreEqual(TimeSpan.Parse("00:08:17"), DotNetOpenAuthSection.Configuration.OpenId.MaxAuthenticationTime);
+ Assert.AreEqual(TimeSpan.Parse("00:08:17"), OpenIdElement.Configuration.MaxAuthenticationTime);
}
[TestCase]
public void OpenIdRelyingParty() {
- var rp = DotNetOpenAuthSection.Configuration.OpenId.RelyingParty;
+ var rp = OpenIdElement.Configuration.RelyingParty;
Assert.IsNull(rp.ApplicationStore.CustomType);
Assert.AreEqual(ProtocolVersion.V10, rp.SecuritySettings.MinimumRequiredOpenIdVersion);
@@ -47,7 +47,7 @@ namespace DotNetOpenAuth.Test.Configuration {
[TestCase]
public void OpenIdProvider() {
- var op = DotNetOpenAuthSection.Configuration.OpenId.Provider;
+ var op = OpenIdElement.Configuration.Provider;
Assert.IsNull(op.ApplicationStore.CustomType);
Assert.IsTrue(op.SecuritySettings.ProtectDownlevelReplayAttacks);