From 7f09ffe2d46e5977c448ebccd584c73854c66067 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 14 May 2020 23:08:54 -0400 Subject: [PATCH] Change BYOND version used under test --- tests/Tgstation.Server.Tests/Instance/ByondTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Tgstation.Server.Tests/Instance/ByondTest.cs b/tests/Tgstation.Server.Tests/Instance/ByondTest.cs index 6c6de168bd..b83876aa00 100644 --- a/tests/Tgstation.Server.Tests/Instance/ByondTest.cs +++ b/tests/Tgstation.Server.Tests/Instance/ByondTest.cs @@ -25,7 +25,7 @@ namespace Tgstation.Server.Tests.Instance public async Task Run(CancellationToken cancellationToken) { await TestNoVersion(cancellationToken).ConfigureAwait(false); - await TestInstall511(cancellationToken).ConfigureAwait(false); + await TestInstallStable(cancellationToken).ConfigureAwait(false); await TestInstallFakeVersion(cancellationToken).ConfigureAwait(false); } @@ -40,11 +40,11 @@ namespace Tgstation.Server.Tests.Instance await WaitForJob(test.InstallJob, 60, true, cancellationToken).ConfigureAwait(false); } - async Task TestInstall511(CancellationToken cancellationToken) + async Task TestInstallStable(CancellationToken cancellationToken) { var newModel = new Api.Models.Byond { - Version = new Version(511, 1385) + Version = new Version(513, 1514) }; var test = await byondClient.SetActiveVersion(newModel, cancellationToken).ConfigureAwait(false); Assert.IsNotNull(test.InstallJob);