diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-07-14 07:34:49 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-14 07:34:49 +1000 |
commit | 33b60c01b5e60dc38b02b6f0fd018be2d2d07cf7 (patch) | |
tree | 5e6fed5d4599ecfb0490120bacf5cbee91448d27 /tests/rest | |
parent | Merge pull request #3533 from matrix-org/rav/fix_federation_ratelimite_queue (diff) | |
download | synapse-33b60c01b5e60dc38b02b6f0fd018be2d2d07cf7.tar.xz |
Make auth & transactions more testable (#3499)
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/test_transactions.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/rest/client/test_transactions.py b/tests/rest/client/test_transactions.py index eee99ca2e0..34e68ae82f 100644 --- a/tests/rest/client/test_transactions.py +++ b/tests/rest/client/test_transactions.py @@ -14,7 +14,10 @@ class HttpTransactionCacheTestCase(unittest.TestCase): def setUp(self): self.clock = MockClock() - self.cache = HttpTransactionCache(self.clock) + self.hs = Mock() + self.hs.get_clock = Mock(return_value=self.clock) + self.hs.get_auth = Mock() + self.cache = HttpTransactionCache(self.hs) self.mock_http_response = (200, "GOOD JOB!") self.mock_key = "foo" |