From c52cf333b5deee74ab782d61170cd56c1047ac97 Mon Sep 17 00:00:00 2001 From: Anatolij Vasilev Date: Sun, 22 Oct 2023 20:31:06 +0200 Subject: [PATCH] fixed path for windows tests --- SoG_SGreader.Test/IntegrationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoG_SGreader.Test/IntegrationTests.cs b/SoG_SGreader.Test/IntegrationTests.cs index 3d015e4..e861d21 100644 --- a/SoG_SGreader.Test/IntegrationTests.cs +++ b/SoG_SGreader.Test/IntegrationTests.cs @@ -55,7 +55,7 @@ public void TestBadPath() process.WaitForExit(); Assert.Contains("Could not find file", output); - Assert.Contains("SaveGames/doesntexist.cha", output); + Assert.Contains(Path.Combine("SaveGames", "doesntexist.cha"), output); } [Fact]