Commit ca1bd01a authored by Nick Craver's avatar Nick Craver

Tests: fix config oops

This didn't prctically matter because they match with defaults...but was wrong.
parent bb2c0a77
......@@ -22,7 +22,7 @@ public abstract class TestBase : IDisposable
{
protected ITestOutputHelper Output { get; }
protected TextWriterOutputHelper Writer { get; }
protected virtual string GetConfiguration() => TestConfig.Current.MasterServer + ":" + TestConfig.Current.MasterPort + "," + TestConfig.Current.MasterServer + ":" + TestConfig.Current.SlavePort;
protected virtual string GetConfiguration() => TestConfig.Current.MasterServer + ":" + TestConfig.Current.MasterPort + "," + TestConfig.Current.SlaveServer + ":" + TestConfig.Current.SlavePort;
protected TestBase(ITestOutputHelper output)
{
......
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