Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
javierdelapuente committed Jun 26, 2024
1 parent 5f3589e commit 307b9d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charm/tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ async def test_saml_netbox(
assert res.status_code == 200
assert "<title>Home | NetBox</title>" in res.text
# The user is not logged in.
assert 'Log Out' not in res.text
assert 'ubuntu' not in res.text
assert "Log Out" not in res.text
assert "ubuntu" not in res.text

session = requests.session()

Expand All @@ -242,5 +242,5 @@ async def test_saml_netbox(
assert logged_in_page.status_code == 200
assert "<title>Home | NetBox</title>" in logged_in_page.text
# The user is logged in.
assert 'Log Out' in logged_in_page.text
assert 'ubuntu' in logged_in_page.text
assert "Log Out" in logged_in_page.text
assert "ubuntu" in logged_in_page.text

0 comments on commit 307b9d6

Please sign in to comment.