From f5bd461401d5eceed7a69d4c3011273bcfc56a44 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 29 Jul 2025 20:22:55 +0200 Subject: [PATCH] Update tests/test_utils_path.py --- tests/test_utils_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_path.py b/tests/test_utils_path.py index c11e5b85..287b1789 100644 --- a/tests/test_utils_path.py +++ b/tests/test_utils_path.py @@ -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)