Merge pull request #15353 from jlhawn/fixing-concurrency-trust

[graph] Use a pipe for downloads to write progress
This commit is contained in:
Alexander Morozov
2015-08-05 18:52:27 -07:00
2 changed files with 28 additions and 4 deletions
+1 -1
View File
@@ -446,7 +446,7 @@ func (s *DockerRegistrySuite) TestPullFailsWithAlteredManifest(c *check.C) {
imageReference := fmt.Sprintf("%s@%s", repoName, manifestDigest)
out, exitStatus, _ := dockerCmdWithError("pull", imageReference)
if exitStatus == 0 {
c.Fatalf("expected a zero exit status but got %d: %s", exitStatus, out)
c.Fatalf("expected a non-zero exit status but got %d: %s", exitStatus, out)
}
expectedErrorMsg := fmt.Sprintf("image verification failed for digest %s", manifestDigest)