From ef0bf6c0cf54356d90485fbdb5154fe7a9f0b0c2 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 13 Dec 2023 22:59:50 -0500 Subject: [PATCH] Force this variable to check for `true` --- tests/Tgstation.Server.Tests/Live/TestLiveServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs index a968d57219..52b0b3f90e 100644 --- a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs +++ b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs @@ -1213,7 +1213,7 @@ namespace Tgstation.Server.Tests.Live [TestMethod] public Task TestOpenDreamExclusiveTgsOperation() { - if (String.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("TGS_TEST_OD_EXCLUSIVE"))) + if (Environment.GetEnvironmentVariable("TGS_TEST_OD_EXCLUSIVE") != "true") Assert.Inconclusive("This test is covered by TestStandardTgsOperation"); return TestStandardTgsOperation(true);