From 850bfcbd2fcd8d2d6e0942e6110583c667dce443 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 17 Apr 2022 22:35:47 +0200 Subject: tests: Fix flaky sub_add test --- tests/test_mpv.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_mpv.py b/tests/test_mpv.py index 7c0373d..87cd318 100755 --- a/tests/test_mpv.py +++ b/tests/test_mpv.py @@ -687,6 +687,7 @@ class CommandTests(MpvTestCase): def test_sub_add(self): handler = mock.Mock() self.m.property_observer('sub-text')(handler) + time.sleep(0.5) self.m.loadfile(TESTVID) self.m.wait_until_playing() -- cgit