Fixed go vet

Fixes #825 (since `go vet` was failing locally while doing `make test`)
This commit is contained in:
Suraj Narwade 2017-09-26 16:59:13 +05:30
parent 99f88ef15c
commit f51a7d096e

View File

@ -56,7 +56,7 @@ func TestParseHealthCheck(t *testing.T) {
}
if !reflect.DeepEqual(output, expected) {
t.Errorf("Structs are not equal, expected: %s, output: %s", expected, output)
t.Errorf("Structs are not equal, expected: %v, output: %v", expected, output)
}
}