diff options
author | jaseg <git@jaseg.net> | 2017-05-10 18:25:31 +0200 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2017-05-10 18:29:41 +0200 |
commit | c47bd2a2c603c57c2c86474450056f21492cce48 (patch) | |
tree | 7a492e4be1ddd0cedfbe102016fc548f2b9b0711 /mpv-test.py | |
parent | 303eedbb3b2fe8ddd0229c49d5d961f06fd39208 (diff) | |
download | python-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-x | mpv-test.py | 2 |
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): |