Skip to content

Commit

Permalink
Update error message in negative settings test (#13307)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Talreja <[email protected]>
(cherry picked from commit 9af01c7)
  • Loading branch information
Gauravtalreja1 committed Dec 7, 2023
1 parent 744e0d1 commit 48a90ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/foreman/ui/test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_positive_httpd_proxy_url_update(session, setting_update):


@pytest.mark.tier2
@pytest.mark.parametrize('setting_update', ['foreman_url', 'entries_per_page'], indirect=True)
@pytest.mark.parametrize('setting_update', ['foreman_url'], indirect=True)
def test_negative_validate_foreman_url_error_message(session, setting_update):
"""Updates some settings with invalid values (an exceptional tier2 test)
Expand All @@ -137,9 +137,10 @@ def test_negative_validate_foreman_url_error_message(session, setting_update):
property_name = setting_update.name
with session:
invalid_value = [invalid_value for invalid_value in invalid_settings_values()][0]
err_msg = 'URL must be valid and schema must be one of http and https, Invalid HTTP(S) URL'
with pytest.raises(AssertionError) as context:
session.settings.update(f'name = {property_name}', invalid_value)
assert 'Value is invalid: must be integer' in str(context.value)
assert err_msg in str(context.value)


@pytest.mark.tier2
Expand Down

0 comments on commit 48a90ae

Please sign in to comment.