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:
authoryorah <yoram.harmelin@gmail.com>2013-07-01 16:39:56 +0400
committeryorah <yoram.harmelin@gmail.com>2013-07-01 17:59:36 +0400
commitfd398efcb2f7ce61fbab38bd192337e1f528f768 (patch)
tree98c6b7a2a0d69259200c7a4601ce3f7abd0af53b /LibGit2Sharp.Tests/ReflogFixture.cs
parentbe0b83c05b5fd68b56104b82523365e70a207803 (diff)
Favor Constants.Signature over BaseFixture.DummySignature
Diffstat (limited to 'LibGit2Sharp.Tests/ReflogFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/ReflogFixture.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibGit2Sharp.Tests/ReflogFixture.cs b/LibGit2Sharp.Tests/ReflogFixture.cs
index 2cb8293b..7f4093be 100644
--- a/LibGit2Sharp.Tests/ReflogFixture.cs
+++ b/LibGit2Sharp.Tests/ReflogFixture.cs
@@ -54,7 +54,7 @@ namespace LibGit2Sharp.Tests
Touch(repo.Info.WorkingDirectory, relativeFilepath, "content\n");
repo.Index.Stage(relativeFilepath);
- var author = DummySignature;
+ var author = Constants.Signature;
const string commitMessage = "Hope reflog behaves as it should";
Commit commit = repo.Commit(commitMessage, author, author);
@@ -88,7 +88,7 @@ namespace LibGit2Sharp.Tests
Touch(repo.Info.WorkingDirectory, relativeFilepath, "content\n");
repo.Index.Stage(relativeFilepath);
- var author = DummySignature;
+ var author = Constants.Signature;
const string commitMessage = "First commit should be logged as initial";
repo.Commit(commitMessage, author, author);
@@ -115,7 +115,7 @@ namespace LibGit2Sharp.Tests
Touch(repo.Info.WorkingDirectory, relativeFilepath, "content\n");
repo.Index.Stage(relativeFilepath);
- var author = DummySignature;
+ var author = Constants.Signature;
const string commitMessage = "Commit on detached head";
var commit = repo.Commit(commitMessage, author, author);