summary refs log tree commit diff
path: root/tests/appservice
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2015-03-06 15:12:24 +0000
committerKegan Dougal <kegan@matrix.org>2015-03-06 15:12:24 +0000
commitf260cb72cd3435d540411962a92ca2a9fd333eb1 (patch)
tree68af80d83bbbd54a6702d9015f2cb1ff8094f2cf /tests/appservice
parentAdd stub ApplicationServiceTransactionStore. Bootstrap Recoverers. Fill in st... (diff)
downloadsynapse-f260cb72cd3435d540411962a92ca2a9fd333eb1.tar.xz
Flesh out more stub functions.
Diffstat (limited to 'tests/appservice')
-rw-r--r--tests/appservice/test_scheduler.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/appservice/test_scheduler.py b/tests/appservice/test_scheduler.py
index 1e3eb9e1cc..ec8f77c54b 100644
--- a/tests/appservice/test_scheduler.py
+++ b/tests/appservice/test_scheduler.py
@@ -57,7 +57,8 @@ class ApplicationServiceSchedulerRecovererTestCase(unittest.TestCase):
         self.assertEquals(1, txn.complete.call_count)
         # 2 because it needs to get None to know there are no more txns
         self.assertEquals(2, self.store.get_oldest_txn.call_count)
-        self.assertEquals(1, self.callback.call_count)
+        self.callback.assert_called_once_with(self.recoverer)
+        self.assertEquals(self.recoverer.service, self.service)
 
     def test_recover_retry_txn(self):
         txn = Mock()
@@ -91,7 +92,7 @@ class ApplicationServiceSchedulerRecovererTestCase(unittest.TestCase):
         self.clock.advance_time(16000)
         self.assertEquals(1, txn.send.call_count)  # new mock reset call count
         self.assertEquals(1, txn.complete.call_count)
-        self.assertEquals(1, self.callback.call_count)
+        self.callback.assert_called_once_with(self.recoverer)
 
 class ApplicationServiceSchedulerEventGrouperTestCase(unittest.TestCase):