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 3382d53 commit 67e4098Copy full SHA for 67e4098
test/test_player.py
@@ -64,8 +64,12 @@ def test_play_virtual(self):
64
self.assertEqual(self.MockSleep.call_count, 2)
65
if sys.version_info.major > 3 or sys.version_info.minor >= 8:
66
# The args argument was introduced with python 3.8
67
- self.assertTrue(msg1.equals(self.mock_virtual_bus.send.mock_calls[0].args[0]))
68
- self.assertTrue(msg2.equals(self.mock_virtual_bus.send.mock_calls[1].args[0]))
+ self.assertTrue(
+ msg1.equals(self.mock_virtual_bus.send.mock_calls[0].args[0])
69
+ )
70
71
+ msg2.equals(self.mock_virtual_bus.send.mock_calls[1].args[0])
72
73
self.assertSuccessfulCleanup()
74
75
def test_play_virtual_verbose(self):
0 commit comments