From 1179ec0b66e2b97e9649e5317002c1c078e8a644 Mon Sep 17 00:00:00 2001
From: dosas <dosas@users.noreply.github.com>
Date: Wed, 17 Apr 2024 13:27:24 +0200
Subject: [PATCH] Fix typo for hammer cli create repo (#14801)

content_type --> content-type
---
 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 7120bedf34c..6d612029d15 100644
--- a/tests/foreman/cli/test_repository.py
+++ b/tests/foreman/cli/test_repository.py
@@ -2017,7 +2017,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):
@@ -2042,7 +2042,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):