Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
lhellebr committed Jan 3, 2024
1 parent 4d27824 commit f05331a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion pytest_fixtures/core/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import pytest
from requests.exceptions import HTTPError

from robottelo.constants import PERMISSIONS
from robottelo.logging import logger


Expand Down
8 changes: 6 additions & 2 deletions tests/foreman/ui/test_remoteexecution.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@ def test_positive_run_default_job_template_by_ip(session, rex_contenthost, modul
@pytest.mark.skip_if_open('BZ:2182353')
@pytest.mark.rhel_ver_match('8')
@pytest.mark.tier3
@pytest.mark.parametrize('ui_user', [{'admin': True}, {'admin': False}], indirect=True, ids=['adminuser', 'nonadminuser'])
def test_positive_run_custom_job_template_by_ip(session, module_org, target_sat, default_location, ui_user, rex_contenthost):
@pytest.mark.parametrize(
'ui_user', [{'admin': True}, {'admin': False}], indirect=True, ids=['adminuser', 'nonadminuser']
)
def test_positive_run_custom_job_template_by_ip(
session, module_org, target_sat, default_location, ui_user, rex_contenthost
):
"""Run a job template on a host connected by ip
:id: 3a59eb15-67c4-46e1-ba5f-203496ec0b0c
Expand Down

0 comments on commit f05331a

Please sign in to comment.