diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-14 16:52:30 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-14 16:52:30 +0100 |
commit | 1522ed9c07b11a97064a6642c6fd6c3e786f9cb5 (patch) | |
tree | 3871a5b1be1fcb93336e3ccce562e7fc5dc64c55 /tests | |
parent | Merge pull request #3670 from matrix-org/neilj/mau_sync_block (diff) | |
download | synapse-1522ed9c07b11a97064a6642c6fd6c3e786f9cb5.tar.xz |
in case max_mau is less than I think
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_monthly_active_users.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_monthly_active_users.py b/tests/storage/test_monthly_active_users.py index 0d58dcebc5..511acbde9b 100644 --- a/tests/storage/test_monthly_active_users.py +++ b/tests/storage/test_monthly_active_users.py @@ -33,7 +33,7 @@ class MonthlyActiveUsersTestCase(tests.unittest.TestCase): @defer.inlineCallbacks def test_initialise_reserved_users(self): - + self.hs.config.max_mau_value = 5 user1 = "@user1:server" user1_email = "user1@matrix.org" user2 = "@user2:server" |