fix version test [CI SKIP]

This commit is contained in:
Brad Rydzewski 2019-04-13 11:11:53 -07:00
parent 4004cb6008
commit 0282600685

View file

@ -9,7 +9,7 @@ package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "1.0.0"; got != want {
if got, want := Version.String(), "1.0.1"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}