tests: Fix Chromium message matching

This commit is contained in:
Florian Bruhin 2017-05-02 08:24:57 +02:00
parent d8e134c5f0
commit 7b4ab901e9

View File

@ -77,9 +77,9 @@ def is_ignored_lowlevel_message(message):
return True
elif 'Unable to locate theme engine in module_path:' in message:
return True
elif message == 'getrlimit(RLIMIT_NOFILE) failed':
elif 'getrlimit(RLIMIT_NOFILE) failed' in message:
return True
elif message == 'Could not bind NETLINK socket: Address already in use':
elif 'Could not bind NETLINK socket: Address already in use' in message:
return True
return False