From cbf57f8874016204f9e3bca50f761ec53cef9cac Mon Sep 17 00:00:00 2001 From: dosas Date: Wed, 17 Apr 2024 13:27:24 +0200 Subject: [PATCH] Fix typo for hammer cli create repo (#14801) content_type --> content-type (cherry picked from commit 5ffc26b9ff402402c281184b46b0a259bd2dc82c) --- tests/foreman/cli/test_repository.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/foreman/cli/test_repository.py b/tests/foreman/cli/test_repository.py index 8af2bc44927..5d408e8b46d 100644 --- a/tests/foreman/cli/test_repository.py +++ b/tests/foreman/cli/test_repository.py @@ -1985,7 +1985,7 @@ def test_positive_accessible_content_status( @pytest.mark.tier2 @pytest.mark.parametrize( 'repo_options', - **parametrized([{'content_type': 'yum', 'url': CUSTOM_RPM_SHA}]), + **parametrized([{'content-type': 'yum', 'url': CUSTOM_RPM_SHA}]), indirect=True, ) def test_positive_sync_sha_repo(self, repo_options, module_target_sat): @@ -2010,7 +2010,7 @@ def test_positive_sync_sha_repo(self, repo_options, module_target_sat): @pytest.mark.tier2 @pytest.mark.parametrize( 'repo_options', - **parametrized([{'content_type': 'yum', 'url': CUSTOM_3RD_PARTY_REPO}]), + **parametrized([{'content-type': 'yum', 'url': CUSTOM_3RD_PARTY_REPO}]), indirect=True, ) def test_positive_sync_third_party_repo(self, repo_options, module_target_sat):