summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-07-27 15:26:24 +0200
committerGitHub <noreply@github.com>2021-07-27 15:26:24 +0200
commit27a487929e0ee499ca0d7b57cc50923365bef419 (patch)
tree58853c94b912df478dfdfbb533fbf4c3652dc600 /test
parent508dc031c6faee02052d660d16aa91566be3f313 (diff)
parent23a938fa26ad2b674efb672148d78274bd37686b (diff)
downloadpodman-27a487929e0ee499ca0d7b57cc50923365bef419.tar.gz
podman-27a487929e0ee499ca0d7b57cc50923365bef419.tar.bz2
podman-27a487929e0ee499ca0d7b57cc50923365bef419.zip
Merge pull request #11028 from containers/dependabot/go_modules/github.com/containers/image/v5-5.14.0
Bump github.com/containers/image/v5 from 5.13.2 to 5.14.0
Diffstat (limited to 'test')
-rw-r--r--test/e2e/pull_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go
index fd9656f4d..c377f158d 100644
--- a/test/e2e/pull_test.go
+++ b/test/e2e/pull_test.go
@@ -44,7 +44,7 @@ var _ = Describe("Podman pull", func() {
session = podmanTest.Podman([]string{"pull", "busybox:latest", "docker.io/library/ibetthisdoesnotexistfr:random", "alpine"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(125))
- expectedError := "Error initializing source docker://ibetthisdoesnotexistfr:random"
+ expectedError := "initializing source docker://ibetthisdoesnotexistfr:random"
found, _ := session.ErrorGrepString(expectedError)
Expect(found).To(Equal(true))