Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Oct 31, 2024
1 parent e60d4cf commit 5a3cdf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/storage/test_roommember.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,9 @@ def test_extract_heroes_from_room_summary_exclude_service_members(self) -> None:
hero_user_ids, [user1_id, user4_id, user5_id, user6_id, user7_id]
)

def test_extract_heroes_from_room_summary_exclude_service_members_with_empty_heroes(self) -> None:
def test_extract_heroes_from_room_summary_exclude_service_members_with_empty_heroes(
self,
) -> None:
"""
Test that `extract_heroes_from_room_summary(...)` will return an
empty set of heroes if all users have been excluded.
Expand Down Expand Up @@ -723,9 +725,7 @@ def test_extract_heroes_from_room_summary_exclude_service_members_with_empty_her
)

# First 5 users to join the room, excluding service members.
self.assertListEqual(
hero_user_ids, []
)
self.assertListEqual(hero_user_ids, [])

def test_extract_heroes_from_room_summary_membership_order(self) -> None:
"""
Expand Down

0 comments on commit 5a3cdf2

Please sign in to comment.