소스 검색

pull only busybox:latest

Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux)
Victor Vieux 11 년 전
부모
커밋
b8932abcd3
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")
+	pullCmd := exec.Command(dockerBinary, "pull", "busybox:latest")
 	out, exitCode, err := runCommandWithOutput(pullCmd)
 	errorOut(err, t, fmt.Sprintf("%s %s", out, err))