summaryrefslogtreecommitdiff
path: root/mpv-test.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2017-05-10 18:25:31 +0200
committerjaseg <git@jaseg.net>2017-05-10 18:29:41 +0200
commitc47bd2a2c603c57c2c86474450056f21492cce48 (patch)
tree7a492e4be1ddd0cedfbe102016fc548f2b9b0711 /mpv-test.py
parent303eedbb3b2fe8ddd0229c49d5d961f06fd39208 (diff)
downloadpython-mpv-c47bd2a2c603c57c2c86474450056f21492cce48.tar.gz
python-mpv-c47bd2a2c603c57c2c86474450056f21492cce48.tar.bz2
python-mpv-c47bd2a2c603c57c2c86474450056f21492cce48.zip
BREAKING: Move property observation API to NODE format
Diffstat (limited to 'mpv-test.py')
-rwxr-xr-xmpv-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpv-test.py b/mpv-test.py
index fb1c370..b2bea2e 100755
--- a/mpv-test.py
+++ b/mpv-test.py
@@ -151,7 +151,7 @@ class ObservePropertyTest(unittest.TestCase):
m.loop = 'no'
m.loop = 'inf'
m.terminate() # needed for synchronization of event thread
- handler.assert_has_calls([mock.call('no'), mock.call('inf')])
+ handler.assert_has_calls([mock.call('loop', False), mock.call('loop', 'inf')])
class TestLifecycle(unittest.TestCase):