Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ColeHiggins2 authored and sambible committed Oct 17, 2023
1 parent 91eb049 commit 55b4d0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/foreman/cli/test_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import pytest
from requests.exceptions import HTTPError

from robottelo.constants import DEFAULT_ARCHITECTURE, REPOS
from robottelo.constants import DEFAULT_ARCHITECTURE, REPOS, REPOSET


@pytest.mark.rhel_ver_match('[^6]')
Expand Down Expand Up @@ -117,14 +117,14 @@ def test_positive_disable_rh_repo_with_basearch(module_target_sat, module_entitl
releasever=REPOS['kickstart']['rhel8_aps']['version'],
)
repo = module_target_sat.api.Repository(id=rh_repo_id).read()
repo.sync(timeout=2000)
repo.sync(timeout=600)
disabled_repo = module_target_sat.cli.RepositorySet.disable(
{
'basearch': DEFAULT_ARCHITECTURE,
'name': "Red Hat Enterprise Linux 8 for x86_64 - BaseOS (Kickstart)",
'name': REPOSET['kickstart']['rhel8'],
'product-id': repo.product.id,
'organization-id': module_entitlement_manifest_org.id,
'releasever': 8,
'releasever': REPOS['kickstart']['rhel8_aps']['version'],
'repository-id': rh_repo_id,
}
)
Expand Down

0 comments on commit 55b4d0a

Please sign in to comment.