From 0109708048f13bab3ce12c85ed98dc39734eaa22 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Wed, 16 Mar 2016 10:26:54 +0100 Subject: [PATCH] fix missing comma in tests Signed-off-by: Antonio Murdaca --- integration/check_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/check_test.go b/integration/check_test.go index c8cee03c..efb4ddac 100644 --- a/integration/check_test.go +++ b/integration/check_test.go @@ -102,7 +102,7 @@ func (s *SkopeoSuite) TestNeedAuthToPrivateRegistryV2WithoutDockerCfg(c *check.C // TODO(runcom): as soon as we can push to registries ensure you can inspect here // not just get image not found :) func (s *SkopeoSuite) TestNoNeedAuthToPrivateRegistryV2ImageNotFound(c *check.C) { - out, err := exec.Command(skopeoBinary, "inspect" fmt.Sprintf("docker://%s/busybox:latest", s.regV2.url)).CombinedOutput() + out, err := exec.Command(skopeoBinary, "inspect", fmt.Sprintf("docker://%s/busybox:latest", s.regV2.url)).CombinedOutput() c.Assert(err, check.NotNil, check.Commentf(string(out))) wanted := "Error: image busybox not found" if !strings.Contains(string(out), wanted) {