Commit f4ddf7f2 authored by Nick Craver's avatar Nick Craver

Tests: fix PreserveAsyncOrder_SetConnectionMultiplexerProperty

This was correctly blowing up as we don't run that test server...ignore that with a valid server and test what we actually wanted to test.
parent 967acc96
......@@ -32,7 +32,7 @@ public void DefaultValue_IsTrue()
[Fact]
public void PreserveAsyncOrder_SetConnectionMultiplexerProperty()
{
var multiplexer = ConnectionMultiplexer.Connect(TestConfig.Current.MasterServer + ":6500,preserveAsyncOrder=false");
var multiplexer = ConnectionMultiplexer.Connect(TestConfig.Current.MasterServer + ":" + TestConfig.Current.MasterPort + ",preserveAsyncOrder=false");
Assert.False(multiplexer.PreserveAsyncOrder);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment