From aedd35fce69dcea60282d4eea2323f363af65753 Mon Sep 17 00:00:00 2001 From: Jordan Date: Sat, 17 Jun 2023 12:34:54 -0400 Subject: [PATCH] Inconclusive rather than success in POSIX test --- tests/Tgstation.Server.Host.Tests/IO/TestPostWriteHandler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Host.Tests/IO/TestPostWriteHandler.cs b/tests/Tgstation.Server.Host.Tests/IO/TestPostWriteHandler.cs index 8c6e1cbaef..71d3c3fb0b 100644 --- a/tests/Tgstation.Server.Host.Tests/IO/TestPostWriteHandler.cs +++ b/tests/Tgstation.Server.Host.Tests/IO/TestPostWriteHandler.cs @@ -70,7 +70,8 @@ namespace Tgstation.Server.Host.IO.Tests public void TestThrowsOnUnix() { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) - return; + Assert.Inconclusive("POSIX only test."); + var postWriteHandler = new PosixPostWriteHandler(Mock.Of>()); var tmpFile = Path.GetTempFileName(); File.Delete(tmpFile);