summary refs log tree commit diff
path: root/tests/handlers/test_profile.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-12-21 11:47:45 +0000
committerErik Johnston <erik@matrix.org>2014-12-21 11:47:45 +0000
commit74ee4048c2b0cb2fa7fb1e80027de37979b5dd86 (patch)
treeacd6ec851f1b951f87f6c5360bbe6d2b358be64a /tests/handlers/test_profile.py
parentMerge branch 'hotfixes-v0.6.0' of github.com:matrix-org/synapse into erikj-perf (diff)
parentMerge branch 'hotfixes-v0.6.0' (diff)
downloadsynapse-74ee4048c2b0cb2fa7fb1e80027de37979b5dd86.tar.xz
Merge branch 'master' of github.com:matrix-org/synapse into erikj-perf
Diffstat (limited to 'tests/handlers/test_profile.py')
-rw-r--r--tests/handlers/test_profile.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/handlers/test_profile.py b/tests/handlers/test_profile.py
index 1660e7e928..25b172aa5e 100644
--- a/tests/handlers/test_profile.py
+++ b/tests/handlers/test_profile.py
@@ -17,7 +17,7 @@
 from tests import unittest
 from twisted.internet import defer
 
-from mock import Mock
+from mock import Mock, NonCallableMock
 
 from synapse.api.errors import AuthError
 from synapse.server import HomeServer
@@ -59,7 +59,14 @@ class ProfileTestCase(unittest.TestCase):
                 resource_for_federation=Mock(),
                 replication_layer=self.mock_federation,
                 config=self.mock_config,
+                ratelimiter=NonCallableMock(spec_set=[
+                    "send_message",
+                ])
             )
+
+        self.ratelimiter = hs.get_ratelimiter()
+        self.ratelimiter.send_message.return_value = (True, 0)
+
         hs.handlers = ProfileHandlers(hs)
 
         self.store = hs.get_datastore()