diff options
author | Neil Johnson <neil@matrix.org> | 2018-10-24 17:18:08 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-10-24 17:18:08 +0100 |
commit | ea69a84bbb2fc9c1da6db0384a98f577f3bc95a7 (patch) | |
tree | c6b5d38fb5fc9f427ba0ae355258c4fdf55edfb0 /tests | |
parent | commit transaction before closing (diff) | |
download | synapse-ea69a84bbb2fc9c1da6db0384a98f577f3bc95a7.tar.xz |
fix style inconsistencies
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_monthly_active_users.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/storage/test_monthly_active_users.py b/tests/storage/test_monthly_active_users.py index 0c17745ae7..832e379a83 100644 --- a/tests/storage/test_monthly_active_users.py +++ b/tests/storage/test_monthly_active_users.py @@ -54,7 +54,7 @@ class MonthlyActiveUsersTestCase(HomeserverTestCase): self.store.user_add_threepid(user2, "email", user2_email, now, now) self.store.runInteraction( - "initialise", self.store.initialise_reserved_users, threepids + "initialise", self.store._initialise_reserved_users, threepids ) self.pump() @@ -203,7 +203,7 @@ class MonthlyActiveUsersTestCase(HomeserverTestCase): ] self.hs.config.mau_limits_reserved_threepids = threepids self.store.runInteraction( - "initialise", self.store.initialise_reserved_users, threepids + "initialise", self.store._initialise_reserved_users, threepids ) self.pump() |