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
commit 1492ffefea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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))