diff --git a/tests/foreman/longrun/test_inc_updates.py b/tests/foreman/longrun/test_inc_updates.py index 747d693ad43..af8457ee99b 100644 --- a/tests/foreman/longrun/test_inc_updates.py +++ b/tests/foreman/longrun/test_inc_updates.py @@ -231,7 +231,7 @@ def test_positive_noapply_api( @pytest.mark.tier3 -def test_positive_incremental_update_time(module_target_sat, module_sca_manifest_org): +def test_positive_incremental_update_time(module_target_sat, module_entitlement_manifest_org): """Incremental update should not take a long time. :id: a9cdcc58-2d10-42cf-8e24-f7bec3b79d6b @@ -257,7 +257,7 @@ def test_positive_incremental_update_time(module_target_sat, module_sca_manifest """ # create content view cv = module_target_sat.cli_factory.make_content_view( - {'organization-id': module_sca_manifest_org.id} + {'organization-id': module_entitlement_manifest_org.id} ) repo_sync_timestamp = ( datetime.utcnow().replace(microsecond=0) - timedelta(seconds=1) @@ -266,7 +266,7 @@ def test_positive_incremental_update_time(module_target_sat, module_sca_manifest for _repo in ['rhel8_bos', 'rhst8', 'rhsclient8']: rh_repo_id = module_target_sat.api_factory.enable_rhrepo_and_fetchid( basearch=DEFAULT_ARCHITECTURE, - org_id=module_sca_manifest_org.id, + org_id=module_entitlement_manifest_org.id, product=PRDS['rhel8'], repo=REPOS[_repo]['name'], reposet=REPOSET[_repo], @@ -275,7 +275,7 @@ def test_positive_incremental_update_time(module_target_sat, module_sca_manifest module_target_sat.cli.ContentView.add_repository( { 'id': cv['id'], - 'organization-id': module_sca_manifest_org.id, + 'organization-id': module_entitlement_manifest_org.id, 'repository-id': rh_repo_id, } )