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

@@ -67,7 +67,7 @@ token2,user2,uid2
t.Errorf("%d: expected user %#v, got %#v", i, testCase.User, user)
}
if testCase.Ok != ok {
t.Errorf("%d: expected auth %f, got %f", i, testCase.Ok, ok)
t.Errorf("%d: expected auth %v, got %v", i, testCase.Ok, ok)
}
switch {
case err == nil && testCase.Err: