diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-01 14:02:10 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-01 14:02:10 +0100 |
commit | 6eed16d8a2335c97675b6b8661869848f397ea29 (patch) | |
tree | ad02b0e444a9ca6a561552e80f24dfdf0b7734be /tests | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into neilj/mau_sign_i... (diff) | |
download | synapse-6eed16d8a2335c97675b6b8661869848f397ea29.tar.xz |
fix test for py3
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_auth.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/handlers/test_auth.py b/tests/handlers/test_auth.py index 440a453082..55eab9e9cf 100644 --- a/tests/handlers/test_auth.py +++ b/tests/handlers/test_auth.py @@ -156,6 +156,10 @@ class AuthTestCase(unittest.TestCase): ) # Ensure does not raise exception yield self.auth_handler.get_access_token_for_user_id('user_a') + + self.hs.get_datastore().count_monthly_users = Mock( + return_value=defer.succeed(self.small_number_of_users) + ) yield self.auth_handler.validate_short_term_login_token_and_get_user_id( self._get_macaroon().serialize() ) |