We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05f3f03 commit 6bfcae9Copy full SHA for 6bfcae9
test/test_bridge.py
@@ -23,7 +23,7 @@ def setUp(self) -> None:
23
self.mock_virtual_bus.__enter__ = Mock(return_value=self.mock_virtual_bus)
24
25
# Patch time sleep object
26
- patcher_sleep = mock.patch("can.io.player.time.sleep", spec=True)
+ patcher_sleep = mock.patch("can.bridge.time.sleep", spec=True)
27
self.MockSleep = patcher_sleep.start()
28
self.addCleanup(patcher_sleep.stop)
29
0 commit comments