Make vet and testing happy

This commit is contained in:
Thomas Boerger 2020-05-15 02:23:14 +02:00
commit f723940bc7
No known key found for this signature in database
GPG key ID: 09745AFF9D63C79B
2 changed files with 7 additions and 6 deletions

View file

@ -1,8 +1,9 @@
package main
import (
"github.com/pkg/errors"
"testing"
"github.com/pkg/errors"
)
func TestCommandValidate(t *testing.T) {
@ -25,12 +26,12 @@ func TestCommandValidate(t *testing.T) {
func TestVersionEqual(t *testing.T) {
want := true
if got := versionsEqual("1.0", "1.0", false); want != got {
if got := versionsEqual("1.0", "1.0"); want != got {
t.Errorf("want: %t, got: %t", want, got)
}
want = false
if got := versionsEqual("1.5", "1.0", false); want != got {
if got := versionsEqual("1.5", "1.0"); want != got {
t.Errorf("want: %t, got: %t", want, got)
}
}