Browse code

integration-cli: docker_cli_pull_local_test.go: remove not needed Commentf(s)

Signed-off-by: Antonio Murdaca <runcom@redhat.com>

Antonio Murdaca authored on 2015/11/28 01:10:01
Showing 1 changed files
... ...
@@ -85,7 +85,7 @@ func (s *DockerRegistrySuite) TestConcurrentPullWholeRepo(c *check.C) {
85 85
 	for _, repo := range repos {
86 86
 		dockerCmd(c, "inspect", repo)
87 87
 		out, _ := dockerCmd(c, "run", "--rm", repo)
88
-		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))
88
+		c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo)
89 89
 	}
90 90
 }
91 91
 
... ...
@@ -157,7 +157,7 @@ func (s *DockerRegistrySuite) TestConcurrentPullMultipleTags(c *check.C) {
157 157
 	for _, repo := range repos {
158 158
 		dockerCmd(c, "inspect", repo)
159 159
 		out, _ := dockerCmd(c, "run", "--rm", repo)
160
-		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))
160
+		c.Assert(strings.TrimSpace(out), checker.Equals, "/bin/sh -c echo "+repo)
161 161
 	}
162 162
 }
163 163