Skip to content

Commit 42e9826

Browse files
committed
Update test to match new sort order
1 parent 143e83f commit 42e9826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit2Sharp.Tests/GlobalSettingsFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void SetExtensions()
100100
// Enable two new extensions (it will reset the configuration and "noop" will be enabled)
101101
GlobalSettings.SetExtensions("partialclone", "newext");
102102
extensions = GlobalSettings.GetExtensions();
103-
Assert.Equal(new[] { "noop", "objectformat", "partialclone", "newext" }, extensions);
103+
Assert.Equal(new[] { "newext", "noop", "objectformat", "partialclone" }, extensions);
104104
}
105105
}
106106
}

0 commit comments

Comments
 (0)