diff options
Diffstat (limited to 'repository_test.go')
-rw-r--r-- | repository_test.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/repository_test.go b/repository_test.go index b211f8c..0b77c5a 100644 --- a/repository_test.go +++ b/repository_test.go @@ -103,9 +103,10 @@ func createCommit(c *C, r *Repository) plumbing.Hash { } h, err := wt.Commit("test commit message", &CommitOptions{ - All: true, - Author: &author, - Committer: &author, + All: true, + Author: &author, + Committer: &author, + AllowEmptyCommits: true, }) c.Assert(err, IsNil) return h |