diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 09:25:01 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-09 09:25:01 -0700 |
commit | 48f927b47a0d0c3c72c41df6ed6eefc01c8c0d15 (patch) | |
tree | 0628ec8e4d97b56915f8173d42678e86cfc4c415 /src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs | |
parent | d1e9e64563fa330719c0b70be6b81fb5f9fd1ab4 (diff) | |
download | DotNetOpenAuth-48f927b47a0d0c3c72c41df6ed6eefc01c8c0d15.zip DotNetOpenAuth-48f927b47a0d0c3c72c41df6ed6eefc01c8c0d15.tar.gz DotNetOpenAuth-48f927b47a0d0c3c72c41df6ed6eefc01c8c0d15.tar.bz2 |
Removed dependency on publicize.exe, which crashes now in some branches due to bugs, and publicize.exe doesn't appear to be supported by Microsoft any more, so we might as well get off it.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/UriIdentifierTests.cs | 6 |
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; } } } |