From 400053e8d3052755aad3fab38f61dd8e46156715 Mon Sep 17 00:00:00 2001 From: jaseg Date: Wed, 15 Jul 2020 21:44:12 +0200 Subject: tests: Fix TestLifecycle.test_options for current mpv master --- mpv-test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mpv-test.py b/mpv-test.py index 55c7cad..75a67fb 100755 --- a/mpv-test.py +++ b/mpv-test.py @@ -525,7 +525,8 @@ class TestLifecycle(unittest.TestCase): mpv.MPV(this_option_does_not_exists=23) m = mpv.MPV(osd_level=0, loop='inf', deinterlace=False) self.assertEqual(m.osd_level, 0) - self.assertEqual(m.loop, True) + # For compatibility with mpv master (v0.32.0-585-gfba1c681b8) accept both + self.assertIn(m.loop, ['inf', True]) self.assertEqual(m.deinterlace, False) m.terminate() -- cgit