Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
codethulu committed Jun 3, 2024
1 parent 1e0bed2 commit ba37983
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,6 @@ async def test_user_creation(

# Re-creating the same user should fail, as the user already exists
email = "[email protected]"
action: Action = await discourse_unit.run_action("create-user", email=email)
await action.wait()
assert action.status == "failed"
break_action: Action = await discourse_unit.run_action("create-user", email=email)
await break_action.wait()
assert break_action.status == "failed"

0 comments on commit ba37983

Please sign in to comment.