Fix vet warning

Signed-off-by: Paul Mou <ppymou@gmail.com>
This commit is contained in:
paul
2015-03-25 20:31:02 -07:00
parent f84086be2a
commit c5bf2145f1
6 changed files with 23 additions and 21 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func TestPause(t *testing.T) {
t.Fatalf("error thrown while checking if containers were paused: %v", err)
}
if len(pausedContainers) != 1 {
t.Fatalf("there should be one paused container and not", len(pausedContainers))
t.Fatalf("there should be one paused container and not %d", len(pausedContainers))
}
dockerCmd(t, "unpause", name)