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

@@ -49,7 +49,7 @@ func TestAuthenticateRequest(t *testing.T) {
<-success
if len(context.requests) > 0 {
t.Errorf("context should have no stored requests", context)
t.Errorf("context should have no stored requests: %v", context)
}
}
@@ -73,7 +73,7 @@ func TestAuthenticateRequestFailed(t *testing.T) {
<-failed
if len(context.requests) > 0 {
t.Errorf("context should have no stored requests", context)
t.Errorf("context should have no stored requests: %v", context)
}
}
@@ -97,6 +97,6 @@ func TestAuthenticateRequestError(t *testing.T) {
<-failed
if len(context.requests) > 0 {
t.Errorf("context should have no stored requests", context)
t.Errorf("context should have no stored requests: %v", context)
}
}