From e57f4d07e229d9e195f31cd0a8118aeba5f8a544 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 28 Apr 2020 15:54:58 -0400 Subject: [PATCH] Make it more obvious which temp dirs are ours --- tests/Tgstation.Server.Tests/TestingServer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Tgstation.Server.Tests/TestingServer.cs b/tests/Tgstation.Server.Tests/TestingServer.cs index d2e864d782..b557b2c44b 100644 --- a/tests/Tgstation.Server.Tests/TestingServer.cs +++ b/tests/Tgstation.Server.Tests/TestingServer.cs @@ -37,6 +37,7 @@ namespace Tgstation.Server.Tests Directory = Path.GetTempFileName(); File.Delete(Directory); + Directory = Directory.Replace(".tmp", ".tgs4"); System.IO.Directory.CreateDirectory(Directory); const string UrlString = "http://localhost:5001"; Url = new Uri(UrlString);