Skip to content

Commit

Permalink
e2e cli minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pondrejk committed Aug 24, 2023
1 parent 49c4692 commit c02a28e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/foreman/endtoend/test_cli_endtoend.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,11 @@ def test_positive_cli_end_to_end(function_entitlement_manifest, target_sat, rhel

content_host = Host.with_user(user['login'], user['password']).info({'id': content_host['id']})
# check that content view matches what we passed
assert content_host['content-information']['content-view']['name'] == content_view['name']
assert content_host['content-information'][0]['content-view'] == content_view['name']

# check that lifecycle environment matches
assert (
content_host['content-information']['lifecycle-environment']['name']
content_host['content-information'][0]['lifecycle-environment']
== lifecycle_environment['name']
)

Expand Down

0 comments on commit c02a28e

Please sign in to comment.