diff --git a/RecursiveExtractor.Tests/SanitizePathTests.cs b/RecursiveExtractor.Tests/SanitizePathTests.cs index f8d56a2..6d1cfec 100644 --- a/RecursiveExtractor.Tests/SanitizePathTests.cs +++ b/RecursiveExtractor.Tests/SanitizePathTests.cs @@ -13,7 +13,7 @@ public class SanitizePathTests [DataTestMethod] [DataRow("a\\file\\with:colon.name", "a\\file\\with_colon.name")] [DataRow("a\\folder:with\\colon.name", "a\\folder_with\\colon.name")] - + [DataRow("test-pr-change","test-pr-change")] public void TestSanitizePathWindows(string windowsInputPath, string expectedWindowsPath) { var entry = new FileEntry(windowsInputPath, Stream.Null); @@ -34,7 +34,7 @@ public void TestSanitizePathLinux(string linuxInputPath, string expectedLinuxPat { Assert.AreEqual(expectedLinuxPath, entry.GetSanitizedPath()); } - } + } protected static readonly NLog.Logger Logger = NLog.LogManager.GetCurrentClassLogger(); }