Commit 4b44eed1 authored by Marius Gedminas's avatar Marius Gedminas

Be tolerant of case-insensitive filesystems

LOL, Windows.

Hopefully this will make winbot happy.
parent c85c4a9c
...@@ -1150,7 +1150,7 @@ def client_has_newer_data_than_server(): ...@@ -1150,7 +1150,7 @@ def client_has_newer_data_than_server():
>>> wait_until('got enough errors', lambda: >>> wait_until('got enough errors', lambda:
... len([x for x in handler.records ... len([x for x in handler.records
... if x.filename == 'ClientStorage.py' and ... if x.filename.lower() == 'clientstorage.py' and
... x.funcName == 'verify_cache' and ... x.funcName == 'verify_cache' and
... x.levelname == 'CRITICAL' and ... x.levelname == 'CRITICAL' and
... x.msg == 'client Client has seen ' ... x.msg == 'client Client has seen '
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment