Skip to content

Commit

Permalink
[6.14.z] Fix foreman service test (#14600)
Browse files Browse the repository at this point in the history
  • Loading branch information
Satellite-QE authored Apr 3, 2024
1 parent 4030d34 commit b240f86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/foreman/maintain/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ def test_positive_foreman_service(sat_maintain):
assert 'foreman' in result.stdout
result = sat_maintain.cli.Service.status(options={'only': 'httpd'})
assert result.status == 0
result = sat_maintain.cli.Health.check(options={'assumeyes': True})
result = sat_maintain.cli.Health.check(
options={'assumeyes': True, 'whitelist': 'check-tftp-storage'}
)
assert result.status == 0
assert 'foreman' in result.stdout
assert sat_maintain.cli.Service.start(options={'only': 'foreman'}).status == 0
Expand Down

0 comments on commit b240f86

Please sign in to comment.