Bug 1671612 - Fix `runtest.py` for python3. r=pehrsons

Differential Revision: https://phabricator.services.mozilla.com/D93758
This commit is contained in:
Paul Adenot 2020-10-20 13:04:31 +00:00
Родитель c21369d346
Коммит 664e8f7256
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -844,7 +844,7 @@ def findTestMediaDevices(log):
log.error('Could not list currently loaded modules')
return None
null_sink = [x for x in o.splitlines() if 'module-null-sink' in x]
null_sink = [x for x in o.splitlines() if b'module-null-sink' in x]
if not null_sink:
try: