summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Wagner-Hall <daniel@matrix.org>2015-08-11 16:54:06 +0100
committerDaniel Wagner-Hall <daniel@matrix.org>2015-08-11 16:56:30 +0100
commit4ff0228c254e146e37ffd2b1c1df22d1b67353cb (patch)
tree8ff1d726123d10845dbc3bb2e94d2220917021e5
parentUse TypeError instead of ValueError and give a nicer error mesasge (diff)
downloadsynapse-4ff0228c254e146e37ffd2b1c1df22d1b67353cb.tar.xz
Remove call to recently removed function in mock
-rw-r--r--tests/test_distributor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_distributor.py b/tests/test_distributor.py
index 6a0095d850..8ed48cfb70 100644
--- a/tests/test_distributor.py
+++ b/tests/test_distributor.py
@@ -73,8 +73,8 @@ class DistributorTestCase(unittest.TestCase):
             yield d
             self.assertTrue(d.called)
 
-            observers[0].assert_called_once("Go")
-            observers[1].assert_called_once("Go")
+            observers[0].assert_called_once_with("Go")
+            observers[1].assert_called_once_with("Go")
 
             self.assertEquals(mock_logger.warning.call_count, 1)
             self.assertIsInstance(mock_logger.warning.call_args[0][0],