Merge pull request #8166 from unclejack/integcli_pull_scratch

integcli: pull scratch for pull test
Upstream-commit: c8f5c686a5498940e42f813b3f1016ef1cc31fe7
Component: engine
This commit is contained in:
unclejack
2014-09-22 19:16:30 +03:00

View File

@ -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))