Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RecursiveExtractor.Tests/SanitizePathTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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();
}
Expand Down