1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-05 13:15:26 +02:00
This commit is contained in:
Carlos Alexandro Becker 2016-12-31 16:50:53 -02:00
parent fdd582cd0f
commit ab473df425
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
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)
}