Skip to content

Commit

Permalink
Fix linting complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
javierdelapuente committed Mar 25, 2024
1 parent 9847cdd commit 58e636d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_discourse.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,6 @@ async def test_read_write_permission(
assert alternate_user_discourse.check_topic_read_permission(
url=url
), "alternate user could not read topic another user created"
assert (
alternate_user_discourse.check_topic_write_permission(url=url) is False
assert not alternate_user_discourse.check_topic_write_permission(
url=url
), "user could write topic another user created"

0 comments on commit 58e636d

Please sign in to comment.