Skip to content

Commit

Permalink
[6.13] correct component names and description (#14189)
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysawant authored Feb 27, 2024
1 parent d745d07 commit 2edaf3e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/foreman/api/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@ def test_positive_bulk_cancel_sync(self, target_sat, module_entitlement_manifest
indirect=True,
)
def test_positive_sync_sha_repo(self, repo, target_sat):
"""Sync a 'sha' repo successfully
"""Sync repository with 'sha' checksum, which uses 'sha1' in particular actually
:id: b842a21d-639a-48aa-baf3-9244d8bc1415
Expand All @@ -1374,7 +1374,7 @@ def test_positive_sync_sha_repo(self, repo, target_sat):
:BZ: 2024889
:SubComponent: Candlepin
:SubComponent: Pulp
"""
sync_result = repo.sync()
assert sync_result['result'] == 'success'
Expand Down
4 changes: 2 additions & 2 deletions tests/foreman/cli/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -1990,7 +1990,7 @@ def test_positive_accessible_content_status(
indirect=True,
)
def test_positive_sync_sha_repo(self, repo_options, module_target_sat):
"""Sync a 'sha' repo successfully
"""Sync repository with 'sha' checksum, which uses 'sha1' in particular actually
:id: 20579f52-a67b-4d3f-be07-41eec059a891
Expand All @@ -2000,7 +2000,7 @@ def test_positive_sync_sha_repo(self, repo_options, module_target_sat):
:BZ: 2024889
:SubComponent: Candlepin
:SubComponent: Pulp
"""
sha_repo = module_target_sat.cli_factory.make_repository(repo_options)
sha_repo = module_target_sat.cli.Repository.info({'id': sha_repo['id']})
Expand Down
4 changes: 2 additions & 2 deletions tests/foreman/ui/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -1193,15 +1193,15 @@ def test_positive_sync_repo_and_verify_checksum(session, module_org, module_targ

@pytest.mark.tier2
def test_positive_sync_sha_repo(session, module_org, module_target_sat):
"""Sync 'sha' repo successfully
"""Sync repository with 'sha' checksum, which uses 'sha1' in particular actually
:id: 6172035f-96c4-41e4-a79b-acfaa78ad734
:customerscenario: true
:BZ: 2024889
:SubComponent: Candlepin
:SubComponent: Pulp
"""
repo_name = gen_string('alpha')
product = module_target_sat.api.Product(organization=module_org).create()
Expand Down

0 comments on commit 2edaf3e

Please sign in to comment.