Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Correct an incorrect type assertion in tests
Browse files Browse the repository at this point in the history
A copy-paste error from me.
  • Loading branch information
David Robertson committed Sep 30, 2022
1 parent 0832858 commit 7a8daa3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/storage/test_monthly_active_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ def test_user_last_seen_monthly_active(self):
self.assertGreater(result, 0)

result = self.get_success(self.store.user_last_seen_monthly_active(user_id3))
assert result is not None
self.assertNotEqual(result, 0)
self.assertIsNone(result)

@override_config({"max_mau_value": 5})
def test_reap_monthly_active_users(self):
Expand Down

0 comments on commit 7a8daa3

Please sign in to comment.