Update tests/test_utils_path.py
Run CI Tests / test (push) Has been cancelled

This commit is contained in:
2025-07-29 20:22:55 +02:00
parent fde18c538d
commit f5bd461401
+1 -1
View File
@@ -99,6 +99,6 @@ def test_filter_files_excludes_directories():
result = filter_files([f1, f3, f2, d1, f4])
result_names = sorted([p.name for p in result])
assert result_names == ["x.txt", "y.log", "y.txt", "y.json"]
assert result_names == ["x.txt", "y.json", "y.log", "y.txt"]
shutil.rmtree(tmp_dir)