From c47bd2a2c603c57c2c86474450056f21492cce48 Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 10 May 2017 18:25:31 +0200 Subject: BREAKING: Move property observation API to NODE format --- mpv-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpv-test.py') 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): -- cgit