From 3f09369de9711988ff790502fdd1ff6bba598966 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Wed, 28 Feb 2024 20:15:47 +0100 Subject: [PATCH] Update test_resolve_robotics_uri_py.py --- test/test_resolve_robotics_uri_py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_resolve_robotics_uri_py.py b/test/test_resolve_robotics_uri_py.py index bd801c5..58f5736 100644 --- a/test/test_resolve_robotics_uri_py.py +++ b/test/test_resolve_robotics_uri_py.py @@ -157,6 +157,6 @@ def test_scheme_file(): # Try to find an existing file (the Python executable) without any file:/ scheme path_of_python_executable = resolve_robotics_uri_py.resolve_robotics_uri(sys.executable) - assert path_of_python_executable == sys.executable + assert path_of_python_executable == pathlib.Path(sys.executable)