diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-09 05:16:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 05:16:28 -0400 |
commit | 2dcf3067ec90f7605f669727787a3167c6856544 (patch) | |
tree | 6f122e3483dff7a7d8f2f168515c53a80d509e09 /test | |
parent | ccb6211c7beff29ba0d0d374665e1b24262c276f (diff) | |
parent | bb8f53a727aeebb49873b2f4c9c12d6f1d0ce1d3 (diff) | |
download | podman-2dcf3067ec90f7605f669727787a3167c6856544.tar.gz podman-2dcf3067ec90f7605f669727787a3167c6856544.tar.bz2 podman-2dcf3067ec90f7605f669727787a3167c6856544.zip |
Merge pull request #14152 from giuseppe/fix-ci-search-json
test: fix "podman search format json"
Diffstat (limited to 'test')
-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) |