Skip to content
Snippets Groups Projects
Commit 7568fe88 authored by Erik Johnston's avatar Erik Johnston
Browse files

Merge pull request #218 from matrix-org/mockfix

Remove call to "recently" removed function in mock
parents 559c51de 4ff0228c
No related branches found
No related tags found
No related merge requests found
......@@ -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],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment