mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 15:07:03 +01:00
Fix Postgres Update test again
This commit is contained in:
@@ -91,9 +91,10 @@ namespace Tgstation.Server.Tests
|
||||
await serverTask.ConfigureAwait(false);
|
||||
}
|
||||
catch (OperationCanceledException) { }
|
||||
catch (NotSupportedException ex)
|
||||
catch (AggregateException ex)
|
||||
{
|
||||
Assert.Inconclusive(ex.Message);
|
||||
if (ex.InnerException is NotSupportedException notSupportedException)
|
||||
Assert.Inconclusive(notSupportedException.Message);
|
||||
}
|
||||
}
|
||||
Assert.IsTrue(server.RestartRequested, "Server not requesting restart!");
|
||||
|
||||
Reference in New Issue
Block a user