8000 Correct the order of arguments for an assertion · libgit2/libgit2sharp@efb0b10 · GitHub
[go: up one dir, main page]

Skip to content

Commit efb0b10

Browse files
committed
Correct the order of arguments for an assertion
1 parent 38f046d commit efb0b10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit2Sharp.Tests/ConfigurationFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ public void CanAppendToSearchPaths()
497497
GlobalSettings.SetConfigSearchPaths(ConfigurationLevel.Global, "$PATH", appendMe);
498498

499499
var currentPaths = GlobalSettings.GetConfigSearchPaths(ConfigurationLevel.Global);
500-
Assert.Equal(currentPaths, prevPaths.Concat(new[] { appendMe }));
500+
Assert.Equal(prevPaths.Concat(new[] { appendMe }), currentPaths);
501501

502502
// set it back to the default
503503
GlobalSettings.SetConfigSearchPaths(ConfigurationLevel.Global, null);

0 commit comments

Comments
 (0)
0