We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3454c3b commit 0c43e06Copy full SHA for 0c43e06
1 file changed
RecursiveExtractor.Tests/SanitizePathTests.cs
@@ -13,7 +13,7 @@ public class SanitizePathTests
13
[DataTestMethod]
14
[DataRow("a\\file\\with:colon.name", "a\\file\\with_colon.name")]
15
[DataRow("a\\folder:with\\colon.name", "a\\folder_with\\colon.name")]
16
-
+ [DataRow("test-pr-change","test-pr-change")]
17
public void TestSanitizePathWindows(string windowsInputPath, string expectedWindowsPath)
18
{
19
var entry = new FileEntry(windowsInputPath, Stream.Null);
@@ -34,7 +34,7 @@ public void TestSanitizePathLinux(string linuxInputPath, string expectedLinuxPat
34
35
Assert.AreEqual(expectedLinuxPath, entry.GetSanitizedPath());
36
}
37
- }
+ }
38
39
protected static readonly NLog.Logger Logger = NLog.LogManager.GetCurrentClassLogger();
40
0 commit comments