8000 Update LibGit2Sharp.NativeBinaries to 2.0.321 by bording · Pull Request #2066 · libgit2/libgit2sharp · GitHub
[go: up one dir, main page]

Skip to content

Update LibGit2Sharp.NativeBinaries to 2.0.321 #2066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 27, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Update test to match new sort order
  • Loading branch information
bording committed Nov 27, 2023
commit 42e98263699776009aeb70cf45673a60a4847dfa
2 changes: 1 addition & 1 deletion LibGit2Sharp.Tests/GlobalSettingsFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void SetExtensions()
// Enable two new extensions (it will reset the configuration and "noop" will be enabled)
GlobalSettings.SetExtensions("partialclone", "newext");
extensions = GlobalSettings.GetExtensions();
Assert.Equal(new[] { "noop", "objectformat", "partialclone", "newext" }, extensions);
Assert.Equal(new[] { "newext", "noop", "objectformat", "partialclone" }, extensions);
}
}
}
0