Skip to content

Commit 87d40dd

Browse files
committed
fix tests for new param
1 parent 951c9d7 commit 87d40dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

log/tag_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func TestCommitLogSingleTag(t *testing.T) {
3535
_, err = repo.CreateTag("0.0.0", *hash, getTagOptions("0.0.0"))
3636
bail(err)
3737

38-
log, _ := CommitLog(repo, "", "", SupportedKeys, true)
38+
log, _ := CommitLog(repo, "", "", SupportedKeys, true, false)
3939
if log == "" {
4040
t.Fail()
4141
}
@@ -79,7 +79,7 @@ func TestCommitLogDualTag(t *testing.T) {
7979
_, err = repo.CreateTag("0.0.1", *secondLastHash, getTagOptions("0.0.1"))
8080
bail(err)
8181

82-
log, _ := CommitLog(repo, "", "", SupportedKeys, true)
82+
log, _ := CommitLog(repo, "", "", SupportedKeys, true, false)
8383
if log == "" {
8484
t.Fail()
8585
}
@@ -125,7 +125,7 @@ func TestCommitLogHeadTag(t *testing.T) {
125125
_, err = repo.CreateTag("0.0.1", *lastHash, getTagOptions("0.0.1"))
126126
bail(err)
127127

128-
log, _ := CommitLog(repo, "", "", SupportedKeys, true)
128+
log, _ := CommitLog(repo, "", "", SupportedKeys, true, false)
129129
if log == "" {
130130
t.Fail()
131131
}

0 commit comments

Comments
 (0)