Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Dahlby <dahlbyk@gmail.com>2013-11-21 03:54:04 +0400
committerKeith Dahlby <dahlbyk@gmail.com>2013-11-21 03:54:04 +0400
commitaf3bc8960f3e7556d03ae20ad739e8c2385f57f0 (patch)
tree0738611a66441fdca739cf2397c92b873af2395a /LibGit2Sharp.Tests
parent3cf04dd7244c2de237f7e997505d3edbdf26ff1c (diff)
Remove unnecessary global config check
Diffstat (limited to 'LibGit2Sharp.Tests')
-rw-r--r--LibGit2Sharp.Tests/ConfigurationFixture.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/LibGit2Sharp.Tests/ConfigurationFixture.cs b/LibGit2Sharp.Tests/ConfigurationFixture.cs
index 9917d92a..0e777461 100644
--- a/LibGit2Sharp.Tests/ConfigurationFixture.cs
+++ b/LibGit2Sharp.Tests/ConfigurationFixture.cs
@@ -194,9 +194,6 @@ namespace LibGit2Sharp.Tests
using (var repo = new Repository(StandardTestRepoPath, options))
{
- InconclusiveIf(() => !repo.Config.HasConfig(ConfigurationLevel.Global),
- "No Git global configuration available");
-
var entry = repo.Config.FirstOrDefault<ConfigurationEntry<string>>(e => e.Key == "user.name");
Assert.NotNull(entry);
Assert.Equal(Constants.Signature.Name, entry.Value);