Fix format specifiers in Printf-type functions.

This commit is contained in:
Eric Tune
2014-10-09 17:06:32 -07:00
parent e1cb72f1ae
commit 800284164a
15 changed files with 24 additions and 24 deletions

View File

@@ -191,10 +191,10 @@ func TestRequiresExactMatch(t *testing.T) {
for k, v := range testCases {
value, found := v.S.RequiresExactMatch(v.Label)
if value != v.Value {
t.Errorf("%s: expected value %s, got %s", k, v.Value, value)
t.Errorf("%s: expected value %v, got %s", k, v.Value, value)
}
if found != v.Found {
t.Errorf("%s: expected found %s, got %s", k, v.Found, found)
t.Errorf("%s: expected found %v, got %s", k, v.Found, found)
}
}
}