Skip to content

Commit

Permalink
Fix typo for hammer cli create repo (#14801)
Browse files Browse the repository at this point in the history
content_type --> content-type

(cherry picked from commit 5ffc26b)
  • Loading branch information
dosas authored and web-flow committed Apr 17, 2024
1 parent b48c273 commit 0023a9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/foreman/cli/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -2020,7 +2020,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):
Expand All @@ -2045,7 +2045,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):
Expand Down

0 comments on commit 0023a9b

Please sign in to comment.