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

@@ -452,7 +452,7 @@ func TestWatchFromZeroIndex(t *testing.T) {
t.Fatalf("%s: expected a pod, got %#v", k, event.Object)
}
if actualPod.ResourceVersion != testCase.ExpectedVersion {
t.Errorf("%s: expected pod with resource version %d, Got %#v", k, testCase.ExpectedVersion, actualPod)
t.Errorf("%s: expected pod with resource version %v, Got %#v", k, testCase.ExpectedVersion, actualPod)
}
pod.ResourceVersion = testCase.ExpectedVersion
if e, a := pod, event.Object; !reflect.DeepEqual(e, a) {