From 901086a5c96b2db0e5390b49d6a75c23345ccd2b Mon Sep 17 00:00:00 2001 From: unclejack Date: Mon, 22 Sep 2014 18:38:12 +0300 Subject: [PATCH] integcli: pull scratch for pull test Docker-DCO-1.1-Signed-off-by: Cristian Staretu (github: unclejack) Upstream-commit: 77d29847e2a59a7b3e56144c774c28a3b7370c91 Component: engine --- components/engine/integration-cli/docker_cli_pull_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/integration-cli/docker_cli_pull_test.go b/components/engine/integration-cli/docker_cli_pull_test.go index fa7d2be44e..c53945fdd7 100644 --- a/components/engine/integration-cli/docker_cli_pull_test.go +++ b/components/engine/integration-cli/docker_cli_pull_test.go @@ -8,7 +8,7 @@ import ( // pulling an image from the central registry should work func TestPullImageFromCentralRegistry(t *testing.T) { - pullCmd := exec.Command(dockerBinary, "pull", "busybox:latest") + pullCmd := exec.Command(dockerBinary, "pull", "scratch") out, exitCode, err := runCommandWithOutput(pullCmd) errorOut(err, t, fmt.Sprintf("%s %s", out, err))