mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #26077 from runcom/fix-TestImportBadURL
integration-cli: fix TestImportBadURL w/o network
This commit is contained in:
commit
83fc63f967
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@ func (s *DockerSuite) TestImportBadURL(c *check.C) {
|
|||
c.Assert(err, checker.NotNil, check.Commentf("import was supposed to fail but didn't"))
|
||||
// Depending on your system you can get either of these errors
|
||||
if !strings.Contains(out, "dial tcp") &&
|
||||
!strings.Contains(out, "ApplyLayer exit status 1 stdout: stderr: archive/tar: invalid tar header") &&
|
||||
!strings.Contains(out, "Error processing tar file") {
|
||||
c.Fatalf("expected an error msg but didn't get one.\nErr: %v\nOut: %v", err, out)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue