mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
integration-cli: docker_cli_pull_local_test.go: remove not needed Commentf(s)
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
a415b0c220
commit
4c3c3fedf8
1 changed files with 2 additions and 2 deletions
|
@ -85,7 +85,7 @@ func (s *DockerRegistrySuite) TestConcurrentPullWholeRepo(c *check.C) {
|
||||||
for _, repo := range repos {
|
for _, repo := range repos {
|
||||||
dockerCmd(c, "inspect", repo)
|
dockerCmd(c, "inspect", repo)
|
||||||
out, _ := dockerCmd(c, "run", "--rm", repo)
|
out, _ := dockerCmd(c, "run", "--rm", repo)
|
||||||
c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo, check.Commentf("CMD did not contain /bin/sh -c echo %s: %s", repo, out))
|
c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ func (s *DockerRegistrySuite) TestConcurrentPullMultipleTags(c *check.C) {
|
||||||
for _, repo := range repos {
|
for _, repo := range repos {
|
||||||
dockerCmd(c, "inspect", repo)
|
dockerCmd(c, "inspect", repo)
|
||||||
out, _ := dockerCmd(c, "run", "--rm", repo)
|
out, _ := dockerCmd(c, "run", "--rm", repo)
|
||||||
c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo, check.Commentf("CMD did not contain /bin/sh -c echo %s; %s", repo, out))
|
c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue