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:
authornulltoken <emeric.fermas@gmail.com>2012-02-26 23:29:39 +0400
committernulltoken <emeric.fermas@gmail.com>2012-02-27 13:20:06 +0400
commitaa6f35c82db8120cb5dfcbe3019ac906089417bf (patch)
tree79640e0b31ca25cff1af2932e5d992bbe518da4f /LibGit2Sharp.Tests/RemoteFixture.cs
parent922d33c35e29f4a2ff749e7beea27144d065c741 (diff)
Upgrade libgit2 binaries to e07c2d2
Fix issue #114
Diffstat (limited to 'LibGit2Sharp.Tests/RemoteFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/RemoteFixture.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/LibGit2Sharp.Tests/RemoteFixture.cs b/LibGit2Sharp.Tests/RemoteFixture.cs
index c0313652..cb8bf4e7 100644
--- a/LibGit2Sharp.Tests/RemoteFixture.cs
+++ b/LibGit2Sharp.Tests/RemoteFixture.cs
@@ -42,10 +42,6 @@ namespace LibGit2Sharp.Tests
repo.Config.Set("remote.origin2.url", oneOrigin.Url);
- /* LibGit2 cringes when a remote doesn't expose a fetch refspec */
- var originFetch = repo.Config.Get<string>("remote", "origin", "fetch", null);
- repo.Config.Set("remote.origin2.fetch", originFetch);
-
Remote differentRemote = repo.Remotes["origin2"];
differentRemote.ShouldNotBeNull();