Merge pull request #16566 from ygalblum/fix_search_test

E2E Tests: change the registry for the search test to avoid authentication
This commit is contained in:
OpenShift Merge Robot
2022-11-22 03:40:15 -05:00
committed by GitHub

View File

@ -454,7 +454,7 @@ registries = ['{{.Host}}:{{.Port}}']`
})
It("podman search with wildcards", func() {
search := podmanTest.Podman([]string{"search", "registry.redhat.io/*openshift*"})
search := podmanTest.Podman([]string{"search", "registry.access.redhat.com/*openshift*"})
search.WaitWithDefaultTimeout()
Expect(search).Should(Exit(0))
Expect(len(search.OutputToStringArray())).To(BeNumerically(">", 1))