Fix Postgres Update test again

This commit is contained in:
Jordan Brown
2020-05-29 12:47:57 -04:00
parent 82060a1ade
commit 3220d2aeec
@@ -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!");