Skip to content

Commit

Permalink
fix test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
brettfo committed Dec 9, 2024
1 parent e9dcf1d commit 6a944b5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ public void VerifyMultipleMatchingPathsReturnsAllPaths()

var expected = new[]
{
Path.Combine(temp.DirectoryPath, "src", "a", "packages.config").NormalizePathToUnix(),
Path.Combine(temp.DirectoryPath, "src", "A", "packages.config").NormalizePathToUnix(),
Path.Combine(temp.DirectoryPath, "src", "a", "packages.config").NormalizePathToUnix(),
};

Assert.Equal(expected, resolvedPaths!);
AssertEx.Equal(expected, resolvedPaths!);
}

[LinuxOnlyFact]
Expand Down

0 comments on commit 6a944b5

Please sign in to comment.