diff --git a/robottelo/constants/__init__.py b/robottelo/constants/__init__.py index 85ecd82afec..2af692e157b 100644 --- a/robottelo/constants/__init__.py +++ b/robottelo/constants/__init__.py @@ -306,9 +306,9 @@ class Colored(Box): 'kickstart': { 'rhel6': 'Red Hat Enterprise Linux 6 Server (Kickstart)', 'rhel7': 'Red Hat Enterprise Linux 7 Server (Kickstart)', - 'rhel8': 'Red Hat Enterprise Linux 8 for x86_64 - BaseOS (Kickstart)', + 'rhel8_bos': 'Red Hat Enterprise Linux 8 for x86_64 - BaseOS (Kickstart)', 'rhel8_aps': 'Red Hat Enterprise Linux 8 for x86_64 - AppStream (Kickstart)', - 'rhel9': 'Red Hat Enterprise Linux 9 for x86_64 - BaseOS (Kickstart)', + 'rhel9_bos': 'Red Hat Enterprise Linux 9 for x86_64 - BaseOS (Kickstart)', 'rhel9_aps': 'Red Hat Enterprise Linux 9 for x86_64 - AppStream (Kickstart)', }, 'rhel8_bos': 'Red Hat Enterprise Linux 8 for x86_64 - BaseOS (RPMs)', @@ -535,7 +535,7 @@ class Colored(Box): 'id': 'rhel-8-for-x86_64-baseos-kickstart', 'name': 'Red Hat Enterprise Linux 8 for x86_64 - BaseOS Kickstart 8.9', 'version': '8.9', - 'reposet': REPOSET['kickstart']['rhel8'], + 'reposet': REPOSET['kickstart']['rhel8_bos'], 'product': PRDS['rhel8'], 'distro': 'rhel8', }, @@ -551,7 +551,7 @@ class Colored(Box): 'id': 'rhel-9-for-x86_64-baseos-kickstart', 'name': 'Red Hat Enterprise Linux 9 for x86_64 - BaseOS Kickstart 9.3', 'version': '9.3', - 'reposet': REPOSET['kickstart']['rhel9'], + 'reposet': REPOSET['kickstart']['rhel9_bos'], 'product': PRDS['rhel9'], 'distro': 'rhel9', }, diff --git a/tests/foreman/api/test_repository.py b/tests/foreman/api/test_repository.py index ac43bef83f8..9248ca5542e 100644 --- a/tests/foreman/api/test_repository.py +++ b/tests/foreman/api/test_repository.py @@ -1488,7 +1488,7 @@ def test_positive_sync_kickstart_check_os( 1. OS with corresponding version was created. """ - distro = f'rhel{distro} + "_bos"' if distro > 7 else f'rhel{distro}' + distro = f'rhel{distro}_bos' if distro > 7 else f'rhel{distro}' repo_id = target_sat.api_factory.enable_rhrepo_and_fetchid( basearch='x86_64', org_id=module_entitlement_manifest_org.id, diff --git a/tests/foreman/cli/test_repositories.py b/tests/foreman/cli/test_repositories.py index cf6e10db5c0..fdbe9948b09 100644 --- a/tests/foreman/cli/test_repositories.py +++ b/tests/foreman/cli/test_repositories.py @@ -116,7 +116,7 @@ def test_positive_disable_rh_repo_with_basearch(module_target_sat, module_entitl disabled_repo = module_target_sat.cli.RepositorySet.disable( { 'basearch': DEFAULT_ARCHITECTURE, - 'name': REPOSET['kickstart']['rhel8'], + 'name': REPOSET['kickstart']['rhel8_bos'], 'product-id': repo.product.id, 'organization-id': module_entitlement_manifest_org.id, 'releasever': REPOS['kickstart']['rhel8_aps']['version'],