diff options
author | Erik Johnston <erikj@jki.re> | 2016-08-17 14:37:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-17 14:37:21 +0100 |
commit | 973d67a033bad7a9ab2cabfb4910eb0a65e49378 (patch) | |
tree | 4ef4b2c8e1249a92ec3af04de548ca9c054334fc /tests/appservice | |
parent | Merge pull request #1018 from matrix-org/erikj/dead_appservice (diff) | |
parent | Clean up _ServiceQueuer (diff) | |
download | synapse-973d67a033bad7a9ab2cabfb4910eb0a65e49378.tar.xz |
Merge pull request #1019 from matrix-org/erikj/appservice_clean
Clean up _ServiceQueuer
Diffstat (limited to 'tests/appservice')
-rw-r--r-- | tests/appservice/test_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/appservice/test_scheduler.py b/tests/appservice/test_scheduler.py index 631a229332..e5a902f734 100644 --- a/tests/appservice/test_scheduler.py +++ b/tests/appservice/test_scheduler.py @@ -193,7 +193,7 @@ class ApplicationServiceSchedulerQueuerTestCase(unittest.TestCase): def setUp(self): self.txn_ctrl = Mock() - self.queuer = _ServiceQueuer(self.txn_ctrl) + self.queuer = _ServiceQueuer(self.txn_ctrl, MockClock()) def test_send_single_event_no_queue(self): # Expect the event to be sent immediately. |