Skip to content

Commit af3bc89

Browse files
committed
Remove unnecessary global config check
1 parent 3cf04dd commit af3bc89

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

LibGit2Sharp.Tests/ConfigurationFixture.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,6 @@ public void CanEnumerateGlobalConfig()
194194

195195
using (var repo = new Repository(StandardTestRepoPath, options))
196196
{
197-
InconclusiveIf(() => !repo.Config.HasConfig(ConfigurationLevel.Global),
198-
"No Git global configuration available");
199-
200197
var entry = repo.Config.FirstOrDefault<ConfigurationEntry<string>>(e => e.Key == "user.name");
201198
Assert.NotNull(entry);
202199
Assert.Equal(Constants.Signature.Name, entry.Value);

0 commit comments

Comments
 (0)