From 4c3c3fedf81a47f9da1a92665ae53e81ce30db62 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Fri, 27 Nov 2015 17:10:01 +0100 Subject: [PATCH] integration-cli: docker_cli_pull_local_test.go: remove not needed Commentf(s) Signed-off-by: Antonio Murdaca --- integration-cli/docker_cli_pull_local_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-cli/docker_cli_pull_local_test.go b/integration-cli/docker_cli_pull_local_test.go index 413b5085db..64d3214b63 100644 --- a/integration-cli/docker_cli_pull_local_test.go +++ b/integration-cli/docker_cli_pull_local_test.go @@ -85,7 +85,7 @@ func (s *DockerRegistrySuite) TestConcurrentPullWholeRepo(c *check.C) { for _, repo := range repos { dockerCmd(c, "inspect", 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 { dockerCmd(c, "inspect", 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) } }