Merge pull request #1709 from erictune/move_line

Fix format specifiers in Printf-type functions.
This commit is contained in:
Tim Hockin
2014-10-09 20:40:35 -07:00
15 changed files with 24 additions and 24 deletions

View File

@@ -174,7 +174,7 @@ func TestPodFitsPorts(t *testing.T) {
for _, test := range tests {
fits, err := PodFitsPorts(test.pod, test.existingPods, "machine")
if err != nil {
t.Errorf("unexpected error: %v")
t.Errorf("unexpected error: %v", err)
}
if test.fits != fits {
t.Errorf("%s: expected %v, saw %v", test.test, test.fits, fits)