From fdce0d5876b5388b49ca60a9a098aa8f79123255 Mon Sep 17 00:00:00 2001 From: vrde Date: Wed, 20 Apr 2016 23:23:08 +0200 Subject: [PATCH] Fix AttributeError in test --- tests/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util.py b/tests/test_util.py index d535a505..b470053c 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -141,5 +141,5 @@ def test_process_group_instantiates_and_start_processes(mock_process): for i in range(concurrency)], any_order=True) for process in pg.processes: - process.start.assert_called() + process.start.assert_called_with()