From e942d23a173efa39a715c4a86033ef91ad2b2444 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:41:57 -0500 Subject: [PATCH] [6.15.z] correct component names and description (#14184) --- tests/foreman/api/test_repository.py | 4 ++-- tests/foreman/cli/test_repository.py | 6 +++--- tests/foreman/ui/test_repository.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/foreman/api/test_repository.py b/tests/foreman/api/test_repository.py index c1be460abef..367570f7ef7 100644 --- a/tests/foreman/api/test_repository.py +++ b/tests/foreman/api/test_repository.py @@ -1415,7 +1415,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 @@ -1425,7 +1425,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' diff --git a/tests/foreman/cli/test_repository.py b/tests/foreman/cli/test_repository.py index 0fa9ae19079..cc1a230bd96 100644 --- a/tests/foreman/cli/test_repository.py +++ b/tests/foreman/cli/test_repository.py @@ -847,7 +847,7 @@ def test_positive_synchronize_docker_repo( indirect=True, ) def test_verify_checksum_container_repo(self, repo, target_sat): - """Check if Verify Content Checksum can be run on non container repos + """Check if Verify Content Checksum can be run on container repos :id: c8f0eb45-3cb6-41b2-aad9-52ac847d7bf8 @@ -2023,7 +2023,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 @@ -2033,7 +2033,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']}) diff --git a/tests/foreman/ui/test_repository.py b/tests/foreman/ui/test_repository.py index 374b51b8e30..1d9d40e10bb 100644 --- a/tests/foreman/ui/test_repository.py +++ b/tests/foreman/ui/test_repository.py @@ -1217,7 +1217,7 @@ 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 @@ -1225,7 +1225,7 @@ def test_positive_sync_sha_repo(session, module_org, module_target_sat): :BZ: 2024889 - :SubComponent: Candlepin + :SubComponent: Pulp """ repo_name = gen_string('alpha') product = module_target_sat.api.Product(organization=module_org).create()