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

@@ -80,7 +80,7 @@ func TestIsConfigTransportSecure(t *testing.T) {
for _, testCase := range testCases {
secure := IsConfigTransportSecure(testCase.Config)
if testCase.Secure != secure {
t.Errorf("expected %d for %#v", testCase.Secure, testCase.Config)
t.Errorf("expected %v for %#v", testCase.Secure, testCase.Config)
}
}
}