summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs b/src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs
index eeb579c..e6bed2f 100644
--- a/src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs
@@ -301,14 +301,14 @@ namespace DotNetOpenAuth.Test.OpenId {
private static void TestAsFullAndPartialTrust(Action<bool> action) {
// Test a bunch of interesting URLs both with scheme substitution on and off.
- Assert.IsTrue(UriIdentifier_Accessor.schemeSubstitution, "Expected scheme substitution to be working.");
+ Assert.IsTrue(UriIdentifier.SchemeSubstitutionTestHook, "Expected scheme substitution to be working.");
action(true);
- UriIdentifier_Accessor.schemeSubstitution = false;
+ UriIdentifier.SchemeSubstitutionTestHook = false;
try {
action(false);
} finally {
- UriIdentifier_Accessor.schemeSubstitution = true;
+ UriIdentifier.SchemeSubstitutionTestHook = true;
}
}
}