Fix vet errors.

This commit is contained in:
Abiola Ibrahim
2015-12-23 13:23:43 +01:00
parent 9110dc4745
commit 92bd914418
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ func TestConditions(t *testing.T) {
for _, op := range invalidOperators {
_, err := NewIf("a", op, "b")
if err == nil {
t.Error("Invalid operator %v used, expected error.", op)
t.Errorf("Invalid operator %v used, expected error.", op)
}
}