summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/e2e/search_test.go4
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)