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)