diff options
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): |