Start Redis first in tests (#1146)

This commit is contained in:
BrennanConroy 2017-11-21 14:03:54 -08:00 committed by GitHub
parent dcbf20b1f7
commit fadd6f89fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,10 +31,10 @@ namespace Microsoft.AspNetCore.SignalR.Redis.Tests
_logToken = testLog.StartTestLog(null, $"{nameof(RedisServerFixture<TStartup>)}_{typeof(TStartup).Name}", out _loggerFactory, "RedisServerFixture");
_logger = _loggerFactory.CreateLogger<RedisServerFixture<TStartup>>();
Docker.Default.Start(_logger);
FirstServer = StartServer();
SecondServer = StartServer();
Docker.Default.Start(_logger);
}
private ServerFixture<TStartup> StartServer()