python-driver
python-driver copied to clipboard
Race in TestTwistedConnection.test_connection_initialization
____________ TestTwistedConnection.test_connection_initialization _____________
self = <tests.unit.io.test_twistedreactor.TestTwistedConnection testMethod=test_connection_initialization>
def test_connection_initialization(self):
"""
Verify that __init__() works correctly.
"""
self.mock_reactor_cft.assert_called_with(self.obj_ut.add_connection)
> self.mock_reactor_run.assert_called_with(installSignalHandlers=False)
D:\a\python-driver\python-driver\tests\unit\io\test_twistedreactor.py:115:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <MagicMock name='run' id='2480883044064'>, args = ()
kwargs = {'installSignalHandlers': False}
expected = 'run(installSignalHandlers=False)', actual = 'not called.'
error_message = 'expected call not found.\nExpected: run(installSignalHandlers=False)\nActual: not called.'
def assert_called_with(self, /, *args, **kwargs):
"""assert that the last call was made with the specified arguments.
Raises an AssertionError if the args and keyword args passed in are
different to the last call to the mock."""
if self.call_args is None:
expected = self._format_mock_call_signature(args, kwargs)
actual = 'not called.'
error_message = ('expected call not found.\nExpected: %s\nActual: %s'
% (expected, actual))
> raise AssertionError(error_message)
E AssertionError: expected call not found.
E Expected: run(installSignalHandlers=False)
E Actual: not called.