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>2015-03-07 13:57:19 +0300
committernulltoken <emeric.fermas@gmail.com>2015-03-17 09:57:43 +0300
commitca7b9be5d38f59d7f552329e3aa8c7f4be0b741a (patch)
tree1092e5e889ec11f4d60b776f6921dd4ced292d63 /LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
parentc6532cee7004f18c4557e76559587c3357c89800 (diff)
Deprecate ReflogEntry.Commiter in favor of ReflogEntry.Committer
Diffstat (limited to 'LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs b/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
index b52adbe5..25e3d2fe 100644
--- a/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
+++ b/LibGit2Sharp.Tests/TestHelpers/BaseFixture.cs
@@ -415,8 +415,8 @@ namespace LibGit2Sharp.Tests.TestHelpers
Assert.Equal(@from ?? ObjectId.Zero, reflogEntry.From);
committer = committer ?? repo.Config.BuildSignature(DateTimeOffset.Now);
- Assert.Equal(committer.Email, reflogEntry.Commiter.Email);
- Assert.InRange(reflogEntry.Commiter.When, committer.When - TimeSpan.FromSeconds(5), committer.When);
+ Assert.Equal(committer.Email, reflogEntry.Committer.Email);
+ Assert.InRange(reflogEntry.Committer.When, committer.When - TimeSpan.FromSeconds(5), committer.When);
}
protected static void EnableRefLog(IRepository repository, bool enable = true)