From c7341bec264fe461b5ee85ecd2c768b06e6fa38f Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 17 Aug 2020 11:07:33 +0200 Subject: [PATCH] tests: Fix Filename test to match paths case-insensitively --- tests/dtoolutil/test_filename.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dtoolutil/test_filename.py b/tests/dtoolutil/test_filename.py index d24d9d52d7..698ed0e69f 100644 --- a/tests/dtoolutil/test_filename.py +++ b/tests/dtoolutil/test_filename.py @@ -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()