Updating game data to mid season patch and made card gallery nicer
This commit is contained in:
@@ -33,7 +33,7 @@ public class TestSetup
|
||||
WorkingDirectory = currentDir
|
||||
};
|
||||
|
||||
_serverProcess = Process.Start(startInfo);
|
||||
_serverProcess = Process.Start(startInfo) ?? throw new Exception("Failed to start server process.");
|
||||
|
||||
_serverProcess.OutputDataReceived += (s, e) =>
|
||||
{
|
||||
@@ -46,8 +46,6 @@ public class TestSetup
|
||||
_serverProcess.BeginOutputReadLine();
|
||||
_serverProcess.BeginErrorReadLine();
|
||||
|
||||
if (_serverProcess == null) throw new Exception("Failed to start server process.");
|
||||
|
||||
// Wait for the server to be ready
|
||||
using var client = new HttpClient();
|
||||
var sw = Stopwatch.StartNew();
|
||||
|
||||
Reference in New Issue
Block a user