From 3776828699fa44f69d352b073768f00b711076a7 Mon Sep 17 00:00:00 2001 From: Beth Probert Date: Mon, 9 Mar 2026 14:52:23 +0000 Subject: [PATCH] Fix final typo --- tests/unit_tests/test_utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_utilities.py b/tests/unit_tests/test_utilities.py index f17bfa3f..7cc17d7e 100644 --- a/tests/unit_tests/test_utilities.py +++ b/tests/unit_tests/test_utilities.py @@ -151,7 +151,7 @@ def test_make_path_safe_trailing_space_in_components(caplog): assert make_path_safe("path/to /file")[0] == "path/to /file" # Check directories can have spaces in them but not at the end assert ( - make_path_safe("path/a long path name /file")[0] + make_path_safe("path/a long path name /file")[0] == "path/a long path name /file" ) # No warnings should be raised