summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenId.Test/TestSupport.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenId.Test/TestSupport.cs')
-rw-r--r--src/DotNetOpenId.Test/TestSupport.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/DotNetOpenId.Test/TestSupport.cs b/src/DotNetOpenId.Test/TestSupport.cs
index 67add5a..a27d2f2 100644
--- a/src/DotNetOpenId.Test/TestSupport.cs
+++ b/src/DotNetOpenId.Test/TestSupport.cs
@@ -103,7 +103,6 @@ public class TestSupport {
}
internal static AspNetHost Host { get; private set; }
- internal static EncodingInterceptor Interceptor { get; private set; }
/// <summary>
/// Returns the content of a given embedded resource.
@@ -247,7 +246,6 @@ public class TestSupport {
public void SetUp() {
log4net.Config.XmlConfigurator.Configure(Assembly.GetExecutingAssembly().GetManifestResourceStream("DotNetOpenId.Test.Logging.config"));
Host = AspNetHost.CreateHost(TestSupport.TestWebDirectory);
- Host.MessageInterceptor = Interceptor = new EncodingInterceptor();
ResetStores();
}
@@ -255,7 +253,6 @@ public class TestSupport {
[TearDown]
public void TearDown() {
log4net.LogManager.Shutdown();
- Host.MessageInterceptor = null;
if (Host != null) {
Host.CloseHttp();
Host = null;