summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-01-29 08:04:48 -0800
committerAndrew <andrewarnott@gmail.com>2009-01-29 08:10:59 -0800
commit6da8acfa0ddc095ae3e9ba9fb884db53764c3f1d (patch)
treec56fff5fae6ec74a8988e3fa3b22a47c0ce79369 /src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
parentfd7dfdcf439eb1869ff83dfdfac58536691c187f (diff)
downloadDotNetOpenAuth-6da8acfa0ddc095ae3e9ba9fb884db53764c3f1d.zip
DotNetOpenAuth-6da8acfa0ddc095ae3e9ba9fb884db53764c3f1d.tar.gz
DotNetOpenAuth-6da8acfa0ddc095ae3e9ba9fb884db53764c3f1d.tar.bz2
Refactored test helpers to remove TestSupport and move its functionality into OpenIdTestBase.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
index edf60e6..ed0cb10 100644
--- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
+++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs
@@ -101,7 +101,7 @@ namespace DotNetOpenAuth.Test.Mocks {
lock (waitingForMessageCoordinationLock) {
this.simulationCompleted = true;
if (this.RemoteChannel.waitingForMessage && this.RemoteChannel.incomingMessage == null) {
- TestSupport.Logger.Debug("CoordinatingChannel is closing while remote channel is waiting for an incoming message. Signaling channel to unblock it to receive a null message.");
+ TestUtilities.TestLogger.Debug("CoordinatingChannel is closing while remote channel is waiting for an incoming message. Signaling channel to unblock it to receive a null message.");
this.RemoteChannel.incomingMessageSignal.Set();
}
}