Fix version check test too

This commit is contained in:
Justin Hawkins 2021-10-11 21:02:08 +10:30
parent 87d8222bc8
commit 6ad242e063

View File

@ -5,7 +5,7 @@ import (
)
func TestVersioning(t *testing.T) {
if !NewVersionAvailable("v0.1.0") {
t.Error("should be a version newer than v0.1.0")
if !NewVersionAvailable("v1.0.0") {
t.Error("should be a version newer than v1.0.0")
}
}