summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-07-23 12:21:18 +0000
committerDaniel J Walsh <dwalsh@redhat.com>2021-07-25 04:54:29 -0400
commit23a938fa26ad2b674efb672148d78274bd37686b (patch)
tree56528e57455cc03edf35bd05e6d609c1c562f627 /test/e2e
parentec5c7c1f6a1898dacddb6cc35802525c288b61ef (diff)
downloadpodman-23a938fa26ad2b674efb672148d78274bd37686b.tar.gz
podman-23a938fa26ad2b674efb672148d78274bd37686b.tar.bz2
podman-23a938fa26ad2b674efb672148d78274bd37686b.zip
Bump github.com/containers/image/v5 from 5.13.2 to 5.14.0
Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.13.2 to 5.14.0. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.13.2...v5.14.0) --- updated-dependencies: - dependency-name: github.com/containers/image/v5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'test/e2e')
-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))