Fix SystemPath.workingDirectoryRoundTripsUnicode in macOS test.

This commit is contained in:
Martín Lucas Golini
2026-09-11 00:37:03 -03:00
parent 60ac3a0ffa
commit 86277832fc

View File

@@ -43,5 +43,6 @@ UTEST( SystemPath, workingDirectoryRoundTripsUnicode ) {
TemporaryWorkingDirectory temp; TemporaryWorkingDirectory temp;
ASSERT_TRUE( temp.created ); ASSERT_TRUE( temp.created );
ASSERT_TRUE( temp.changed ); ASSERT_TRUE( temp.changed );
EXPECT_STDSTREQ( temp.path, FileSystem::getCurrentWorkingDirectory() ); EXPECT_STDSTREQ( FileSystem::getRealPath( temp.path ),
FileSystem::getCurrentWorkingDirectory() );
} }