Lint
This commit is contained in:
parent
486be06f48
commit
e2a20326e8
|
@ -948,12 +948,14 @@ class RoomMessageListTestCase(RoomBase):
|
||||||
# Purge every event before the second event.
|
# Purge every event before the second event.
|
||||||
purge_id = random_string(16)
|
purge_id = random_string(16)
|
||||||
pagination_handler._purges_by_id[purge_id] = PurgeStatus()
|
pagination_handler._purges_by_id[purge_id] = PurgeStatus()
|
||||||
self.get_success(pagination_handler._purge_history(
|
self.get_success(
|
||||||
|
pagination_handler._purge_history(
|
||||||
purge_id=purge_id,
|
purge_id=purge_id,
|
||||||
room_id=self.room_id,
|
room_id=self.room_id,
|
||||||
token=second_token,
|
token=second_token,
|
||||||
delete_local_events=True,
|
delete_local_events=True,
|
||||||
))
|
)
|
||||||
|
)
|
||||||
|
|
||||||
# Check that we only get the second message through /message now that the first
|
# Check that we only get the second message through /message now that the first
|
||||||
# has been purged.
|
# has been purged.
|
||||||
|
|
Loading…
Reference in New Issue