Fix Python 3.5 compatibility
This commit is contained in:
parent
91067fcbd8
commit
c7a50aec38
2 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ class TestProperties(MpvTestCase):
|
|||
while self.m.core_idle:
|
||||
time.sleep(0.05)
|
||||
for name in sorted(self.m.property_list):
|
||||
if name in ('external-file','input-ipc-server', 'heartbeat-cmd', 'wid', 'input-file'):
|
||||
if name in ('external-file','input-ipc-server', 'heartbeat-cmd', 'wid', 'input-file', 'input-unix-socket'):
|
||||
continue
|
||||
name = name.replace('-', '_')
|
||||
with self.subTest(property_name=name), self.swallow_mpv_errors([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue