diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-02-25 16:14:25 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-02-25 16:14:25 +0100 |
commit | b93717904ce75c6fc202528d9cf87eaaf3e449e6 (patch) | |
tree | d04d475e430e3ce765610f887d5cdf13e78b484b /solo-tool-project/test/notifier_unittest.py | |
parent | ba41b0bb78c6f58cb210e3577134e46e9f082647 (diff) |
Remove stop functionality from player
Diffstat (limited to 'solo-tool-project/test/notifier_unittest.py')
-rw-r--r-- | solo-tool-project/test/notifier_unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solo-tool-project/test/notifier_unittest.py b/solo-tool-project/test/notifier_unittest.py index 4ab6096..5749149 100644 --- a/solo-tool-project/test/notifier_unittest.py +++ b/solo-tool-project/test/notifier_unittest.py @@ -60,7 +60,7 @@ def test_eventsWithMockPlayer(uut, mockPlayer): assert called assert receivedValue == expectedValue - mockPlayer.state = 1 + mockPlayer.playing = True mockPlayer.volume = 75 checkEvent(Notifier.PLAYING_STATE_EVENT, mockPlayer.simulatePlayingStateChanged, True) |