tests: Fix Filename test to match paths case-insensitively

This commit is contained in:
rdb 2020-08-17 11:07:33 +02:00
parent 2cb3779204
commit c7341bec26

View File

@ -21,4 +21,4 @@ def test_filename_ctor_pathlib():
path = pathlib.Path(__file__)
fn = Filename(path)
assert fn.to_os_specific_w() == str(path)
assert fn.to_os_specific_w().lower() == str(path).lower()