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:
authorEdward Thomson <ethomson@edwardthomson.com>2017-11-23 19:20:37 +0300
committerGitHub <noreply@github.com>2017-11-23 19:20:37 +0300
commit46270951f98932dc16f2b72c72027cdab1180ee9 (patch)
tree6d15b990296b2e453cde459ca36ba74b483d2a55
parentfe3742e7a047b6c52a2e51bc1fe4b52d60e1a674 (diff)
parentf3306fd063d513aee1d824265cc26707cebd7d6f (diff)
Merge pull request #1517 from libgit2/cmn/remove-writeline
Remove two Console.WriteLine calls from the test fixture
-rw-r--r--LibGit2Sharp.Tests/RepositoryFixture.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/LibGit2Sharp.Tests/RepositoryFixture.cs b/LibGit2Sharp.Tests/RepositoryFixture.cs
index 4934629b..2ff1abb4 100644
--- a/LibGit2Sharp.Tests/RepositoryFixture.cs
+++ b/LibGit2Sharp.Tests/RepositoryFixture.cs
@@ -615,10 +615,8 @@ namespace LibGit2Sharp.Tests
string path = SandboxStandardTestRepo();
using (var repo = new Repository(path))
{
- Console.WriteLine("head, {0}", repo.Head);
Commands.Checkout(repo, repo.Head.Tip.Sha, new CheckoutOptions() { CheckoutModifiers = CheckoutModifiers.Force });
Branch trackLocal = repo.Head;
- Console.WriteLine("head, {0}", repo.Head);
Assert.Null(trackLocal.RemoteName);
}
}