From 1fc574b446b79994a45eb3293d14d72bf3e7c912 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Wed, 17 Apr 2024 07:58:44 -0400 Subject: [PATCH] [6.13.z] Fix typo for hammer cli create repo (#14805) --- 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):