From b7554402691c2a4c75a97872ab73738c6894607a Mon Sep 17 00:00:00 2001 From: Adam Dobes Date: Mon, 21 Aug 2023 11:50:19 +0200 Subject: [PATCH] Fix tests for centos perl-imagestreams --- tests/test_perl_imagestreams.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_perl_imagestreams.py b/tests/test_perl_imagestreams.py index 0566363..ab848ca 100644 --- a/tests/test_perl_imagestreams.py +++ b/tests/test_perl_imagestreams.py @@ -49,12 +49,12 @@ def teardown_method(self): @pytest.mark.parametrize( "version,registry", [ - ("5.32-ubi9", "registry.redhat.io/ubi9/perl-532:latest"), - ("5.32-ubi8", "registry.redhat.io/ubi8/perl-532:latest"), - ("5.30-ubi8", "registry.redhat.io/ubi8/perl-530:latest"), + ("5.32-ubi9", "registry.access.redhat.com/ubi9/perl-532:latest"), + ("5.32-ubi8", "registry.access.redhat.com/ubi8/perl-532:latest"), + ("5.30-ubi8", "registry.access.redhat.com/ubi8/perl-530:latest"), ("5.30-el7", "quay.io/centos7/perl-530-centos7:latest"), ("5.30", "quay.io/centos7/perl-530-centos7:latest"), - ("5.26-ubi8", "registry.redhat.io/ubi8/perl-526:latest"), + ("5.26-ubi8", "registry.access.redhat.com/ubi8/perl-526:latest"), ], ) def test_package_imagestream(self, version, registry):