diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-10 03:21:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 03:21:33 -0400 |
commit | a87bba317e403c69b38c65958f2121d7e3f8a58e (patch) | |
tree | e650d9c4aed3b8e2a4a0f85e1e02c7592b0f7ea0 | |
parent | f40474521b577153e960ea1dd9601b67307aeede (diff) | |
parent | 8e3a991ff624cf6111e4a84b619956d391e491b2 (diff) | |
download | podman-a87bba317e403c69b38c65958f2121d7e3f8a58e.tar.gz podman-a87bba317e403c69b38c65958f2121d7e3f8a58e.tar.bz2 podman-a87bba317e403c69b38c65958f2121d7e3f8a58e.zip |
Merge pull request #14164 from openshift-cherrypick-robot/cherry-pick-14152-to-v4.1
[v4.1] test: fix "podman search format json"
-rw-r--r-- | test/e2e/search_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/search_test.go b/test/e2e/search_test.go index 8237f6433..64677ba54 100644 --- a/test/e2e/search_test.go +++ b/test/e2e/search_test.go @@ -113,11 +113,11 @@ registries = ['{{.Host}}:{{.Port}}']` }) It("podman search format json", func() { - search := podmanTest.Podman([]string{"search", "--format", "json", "alpine"}) + search := podmanTest.Podman([]string{"search", "--format", "json", "busybox"}) search.WaitWithDefaultTimeout() Expect(search).Should(Exit(0)) Expect(search.OutputToString()).To(BeValidJSON()) - Expect(search.OutputToString()).To(ContainSubstring("docker.io/library/alpine")) + Expect(search.OutputToString()).To(ContainSubstring("docker.io/library/busybox")) // Test for https://github.com/containers/podman/issues/11894 contents := make([]entities.ImageSearchReport, 0) |