1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-09-16 09:26:52 +02:00
This commit is contained in:
Carlos Alexandro Becker
2016-12-31 16:50:53 -02:00
parent fdd582cd0f
commit ab473df425
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import (
func TestLog(t *testing.T) {
assert := assert.New(t)
log, err := Log("v0.0.1", "v0.1.0")
log, err := Log("v0.1.9", "v0.2.0")
assert.NoError(err)
assert.NotEmpty(log)
}

View File

@@ -14,7 +14,7 @@ func TestCurrentTag(t *testing.T) {
func TestPreviousTag(t *testing.T) {
assert := assert.New(t)
tag, err := PreviousTag("v0.0.1")
tag, err := PreviousTag("v0.2.0")
assert.NoError(err)
assert.NotEmpty(tag)
}