diff --git a/tests/Tgstation.Server.Tests/Live/Instance/DeploymentTest.cs b/tests/Tgstation.Server.Tests/Live/Instance/DeploymentTest.cs index 8cc7d0b6fb..07e87c2d24 100644 --- a/tests/Tgstation.Server.Tests/Live/Instance/DeploymentTest.cs +++ b/tests/Tgstation.Server.Tests/Live/Instance/DeploymentTest.cs @@ -139,10 +139,10 @@ namespace Tgstation.Server.Tests.Live.Instance var updatedDD = await dreamDaemonClient.Update(new DreamDaemonRequest { - StartupTimeout = 30, + StartupTimeout = 60, Port = ddPort }, cancellationToken); - Assert.AreEqual(30U, updatedDD.StartupTimeout); + Assert.AreEqual(60U, updatedDD.StartupTimeout); Assert.AreEqual(ddPort, updatedDD.Port); async Task CompileAfterByondInstall() diff --git a/tests/Tgstation.Server.Tests/Live/Instance/WatchdogTest.cs b/tests/Tgstation.Server.Tests/Live/Instance/WatchdogTest.cs index 678ef10fc7..6c32ac45b8 100644 --- a/tests/Tgstation.Server.Tests/Live/Instance/WatchdogTest.cs +++ b/tests/Tgstation.Server.Tests/Live/Instance/WatchdogTest.cs @@ -133,7 +133,7 @@ namespace Tgstation.Server.Tests.Live.Instance // Increase startup timeout, disable heartbeats, enable map threads because we've tested without for years instanceClient.DreamDaemon.Update(new DreamDaemonRequest { - StartupTimeout = 30, + StartupTimeout = 60, HealthCheckSeconds = 0, Port = ddPort, MapThreads = 2,