Skip to content
Snippets Groups Projects
Commit 4ff0228c authored by Daniel Wagner-Hall's avatar Daniel Wagner-Hall
Browse files

Remove call to recently removed function in mock

parent 559c51de
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