Skip to content

Commit

Permalink
fixing assert_has_calls calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Miroslav Shubernetskiy committed Jul 28, 2017
1 parent e10c194 commit a9b59c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_multinosetests.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ def test_merge_calls(self,
mock_merge_xunit.assert_called_once_with([nose.xunit_file],
'nosetests.xml')
mock_get_tests_xml_report.assert_has_calls([
nose.xunit_file,
'nosetests.xml'
mock.call(nose.xunit_file),
mock.call('nosetests.xml'),
])
mock_status_print_report.assert_has_call(
'Test suite report',
Expand Down

0 comments on commit a9b59c8

Please sign in to comment.