1
0
mirror of https://github.com/moby/moby.git synced 2025-08-01 05:47:11 +03:00

Update CLI commit hash

Since this new version of the CLI resolves image digests for swarm
services by default, and we do not want integration tests to talk to
Docker Hub, update CLI tests to suppress this behavior.

Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
Aaron Lehmann
2017-05-18 12:23:28 -07:00
parent 23e857cd3d
commit d012569b78
9 changed files with 71 additions and 70 deletions

View File

@ -46,7 +46,8 @@ func (s *DockerSwarmSuite) TestPruneNetwork(c *check.C) {
serviceName := "testprunesvc"
replicas := 1
out, err := d.Cmd("service", "create", "--name", serviceName,
out, err := d.Cmd("service", "create", "--no-resolve-image",
"--name", serviceName,
"--replicas", strconv.Itoa(replicas),
"--network", "n3",
"busybox", "top")