浏览代码

Merge pull request #8166 from unclejack/integcli_pull_scratch

integcli: pull scratch for pull test
unclejack 10 年之前
父节点
当前提交
c8f5c686a5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration-cli/docker_cli_pull_test.go

+ 1 - 1
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))