diff options
author | Paride Legovini <paride@legovini.net> | 2021-09-28 17:25:16 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2021-10-14 23:23:35 +0200 |
commit | 1f59cfa07246c993737b25857fd01421b2da8bbd (patch) | |
tree | 38269eb1cd3e471995b1ae2c8bcc28aff4ec51ac /tests | |
parent | b5f03dd2b7d55b9a632c8771be4ae1a05c2f7fb8 (diff) | |
download | python-mpv-1f59cfa07246c993737b25857fd01421b2da8bbd.tar.gz python-mpv-1f59cfa07246c993737b25857fd01421b2da8bbd.tar.bz2 python-mpv-1f59cfa07246c993737b25857fd01421b2da8bbd.zip |
test_property_observer_decorator: bump sleep to 0.1s
Fixes flaky test with mpv 0.33.1 on ppc64el.
Closes #178.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_mpv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_mpv.py b/tests/test_mpv.py index b9120c0..d47e3b1 100755 --- a/tests/test_mpv.py +++ b/tests/test_mpv.py @@ -291,7 +291,7 @@ class ObservePropertyTest(MpvTestCase): self.assertEqual(m.mute, True) self.assertEqual(m.slang, ['ru']) - time.sleep(0.05) + time.sleep(0.1) foo.unobserve_mpv_properties() m.mute = False |