Skip to content

Commit cf7bcff

Browse files
committed
Update libgit2 binaries to 32e4992
libgit2/libgit2@eb04744...32e4992
1 parent da03beb commit cf7bcff

File tree

10 files changed

+9
-5
lines changed

10 files changed

+9
-5
lines changed
787 KB
Binary file not shown.
-780 KB
Binary file not shown.
591 KB
Binary file not shown.
-584 KB
Binary file not shown.

LibGit2Sharp.Tests/RemoteFixture.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using LibGit2Sharp.Tests.TestHelpers;
1+
using System.Linq;
2+
using LibGit2Sharp.Tests.TestHelpers;
23
using Xunit;
34
using Xunit.Extensions;
45

@@ -163,7 +164,10 @@ public void DoesNotThrowWhenARemoteHasNoUrlSet()
163164
{
164165
var noUrlRemote = repo.Network.Remotes["no_url"];
165166
Assert.NotNull(noUrlRemote);
166-
Assert.Equal(string.Empty, noUrlRemote.Url);
167+
Assert.Equal(null, noUrlRemote.Url);
168+
169+
var remotes = repo.Network.Remotes.ToList();
170+
Assert.Equal(1, remotes.Count(r => r.Name == "no_url"));
167171
}
168172
}
169173
}

LibGit2Sharp/Core/NativeDllName.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace LibGit2Sharp.Core
22
{
33
internal static class NativeDllName
44
{
5-
public const string Name = "git2-eb04744";
5+
public const string Name = "git2-32e4992";
66
}
77
}

LibGit2Sharp/libgit2_hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
eb0474462170ed3198b44eb077bbb4f22cf4d74e
1+
32e49929725a76d9871038f30e2ea67fe0e4a4f8

libgit2

Submodule libgit2 updated 101 files

0 commit comments

Comments
 (0)