diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-07-23 12:21:18 +0000 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-07-25 04:54:29 -0400 |
commit | 23a938fa26ad2b674efb672148d78274bd37686b (patch) | |
tree | 56528e57455cc03edf35bd05e6d609c1c562f627 /test/e2e | |
parent | ec5c7c1f6a1898dacddb6cc35802525c288b61ef (diff) | |
download | podman-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.go | 2 |
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)) |