From f29aacbc4804e3aca1c21b9411e960b2a2543da1 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Fri, 16 Jan 2015 11:34:45 -0800 Subject: [PATCH] Fix failing integration tests Signed-off-by: Derek McGowan (github: dmcgowan) --- integration-cli/docker_cli_pull_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-cli/docker_cli_pull_test.go b/integration-cli/docker_cli_pull_test.go index e76f4ee950..7649688583 100644 --- a/integration-cli/docker_cli_pull_test.go +++ b/integration-cli/docker_cli_pull_test.go @@ -40,6 +40,7 @@ func TestPullImageWithAliases(t *testing.T) { if out, _, err := runCommandWithOutput(pullCmd); err != nil { t.Fatalf("Failed to pull %v: error %v, output %q", repoName, err, out) } + defer deleteImages(repos[0]) if err := exec.Command(dockerBinary, "inspect", repos[0]).Run(); err != nil { t.Fatalf("Image %v was not pulled down", repos[0]) }