diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-02-22 22:59:52 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-02-22 22:59:52 +0100 |
commit | bef8eee0f63cc5ccb963be9467381e4e605e7f53 (patch) | |
tree | a7d07ef9689a608c572216b3e54569014752f0e6 /solo-tool-project/test/notifier_unittest.py | |
parent | 2bcd98fd69b3b4c36b0f6c985a2ea214b1d0ad60 (diff) |
Remove AB concept, introduce key points, refactor SoloTool to use properties
Diffstat (limited to 'solo-tool-project/test/notifier_unittest.py')
-rw-r--r-- | solo-tool-project/test/notifier_unittest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solo-tool-project/test/notifier_unittest.py b/solo-tool-project/test/notifier_unittest.py index 8a6e988..115d21a 100644 --- a/solo-tool-project/test/notifier_unittest.py +++ b/solo-tool-project/test/notifier_unittest.py @@ -37,8 +37,7 @@ def test_allEvents(uut): checkEvent(uut, Notifier.PLAYBACK_VOLUME_EVENT) checkEvent(uut, Notifier.PLAYBACK_RATE_EVENT) checkEvent(uut, Notifier.CURRENT_SONG_EVENT) - checkEvent(uut, Notifier.CURRENT_AB_EVENT) - checkEvent(uut, Notifier.AB_LIMIT_ENABLED_EVENT) + checkEvent(uut, Notifier.CURRENT_KEY_POINT_EVENT) def test_eventWithoutRegisteredCallbacks(uut): uut.notify(Notifier.PLAYING_STATE_EVENT, 0) |