tests: Ignore "Unable to locate theme engine" messages

This commit is contained in:
Florian Bruhin 2017-03-28 20:41:23 +02:00
parent 607710eeae
commit fe81f153cf

View File

@ -75,6 +75,8 @@ def is_ignored_lowlevel_message(message):
"not supported by protocol" in message):
# Makes tests fail on Quantumcross' machine
return True
elif 'Unable to locate theme engine in module_path:' in message:
return True
return False