diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-08-19 08:07:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 08:07:57 -0400 |
commit | f594e434c35ab99bc71216cbb06082aa2b975980 (patch) | |
tree | 0e074197105d52cffd5879964bc413d2587522f6 /tests/storage | |
parent | Updated docs: Added note about missing 308 redirect support. (#8120) (diff) | |
download | synapse-f594e434c35ab99bc71216cbb06082aa2b975980.tar.xz |
Switch the JSON byte producer from a pull to a push producer. (#8116)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_cleanup_extrems.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/storage/test_cleanup_extrems.py b/tests/storage/test_cleanup_extrems.py index 8e9a650f9f..43639ca286 100644 --- a/tests/storage/test_cleanup_extrems.py +++ b/tests/storage/test_cleanup_extrems.py @@ -353,6 +353,7 @@ class CleanupExtremDummyEventsTestCase(HomeserverTestCase): self.event_creator_handler._rooms_to_exclude_from_dummy_event_insertion[ "3" ] = 300000 + self.event_creator_handler._expire_rooms_to_exclude_from_dummy_event_insertion() # All entries within time frame self.assertEqual( @@ -362,7 +363,7 @@ class CleanupExtremDummyEventsTestCase(HomeserverTestCase): 3, ) # Oldest room to expire - self.pump(1) + self.pump(1.01) self.event_creator_handler._expire_rooms_to_exclude_from_dummy_event_insertion() self.assertEqual( len( |