diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 14:05:24 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-01-04 14:05:24 +0100 |
commit | 88d34ded021ac61e2440720fd3deb2cf3eef21e4 (patch) | |
tree | bbd56cf7361f8a4b5dccc21f71c0baba48d5c85a /notifier_unittest.py | |
parent | c75f1ef702b1a3b5cdbbe7f1a87e0f0fbfa80e39 (diff) |
Added playback volume notification to player mock
Diffstat (limited to 'notifier_unittest.py')
-rw-r--r-- | notifier_unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notifier_unittest.py b/notifier_unittest.py index 79b2787..9f37992 100644 --- a/notifier_unittest.py +++ b/notifier_unittest.py @@ -51,7 +51,7 @@ def test_eventsWithMockPlayer(uut, mockPlayer): assert called testEvent(Notifier.PLAYING_STATE_EVENT, mockPlayer.simulatePlayingStateChanged) - #testEvent(Notifier.PLAYBACK_VOLUME_EVENT, mockPlayer.simulatePlaybackVolumeChanged) + testEvent(Notifier.PLAYBACK_VOLUME_EVENT, mockPlayer.simulatePlaybackVolumeChanged) def test_singleEventNotification(uut): playingStateCalled = False |