Across the board package updates

This commit is contained in:
Matt Nadareski
2024-07-16 00:27:12 -04:00
parent 5dc6b658d2
commit aa147379f3
10 changed files with 18 additions and 15 deletions

View File

@@ -31,6 +31,9 @@ namespace SabreTools.Test.Core
public void GetDepotPathTest(string? hash, int depth, string? expected)
{
string? actual = Utilities.GetDepotPath(hash, depth);
if (System.IO.Path.DirectorySeparatorChar == '/')
expected = expected?.Replace('\\', '/');
Assert.Equal(expected, actual);
}