From 86277832fc347ab86de70e079bae2ef18dbfc20c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Fri, 11 Sep 2026 00:37:03 -0300 Subject: [PATCH] Fix SystemPath.workingDirectoryRoundTripsUnicode in macOS test. --- src/tests/unit_tests/systempath_tests.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/unit_tests/systempath_tests.cpp b/src/tests/unit_tests/systempath_tests.cpp index 335640684..ce12321fd 100644 --- a/src/tests/unit_tests/systempath_tests.cpp +++ b/src/tests/unit_tests/systempath_tests.cpp @@ -43,5 +43,6 @@ UTEST( SystemPath, workingDirectoryRoundTripsUnicode ) { TemporaryWorkingDirectory temp; ASSERT_TRUE( temp.created ); ASSERT_TRUE( temp.changed ); - EXPECT_STDSTREQ( temp.path, FileSystem::getCurrentWorkingDirectory() ); + EXPECT_STDSTREQ( FileSystem::getRealPath( temp.path ), + FileSystem::getCurrentWorkingDirectory() ); }