From 2412da9b7b5f3fc915015defa61e1d4bdfeb54ee Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Mon, 21 Jul 2025 13:56:41 +0100 Subject: [PATCH] Revert "Fix Windows path expectation in OsTest.kt" This reverts commit f2b846fcc43f2f3bac9e6a191132207985f0d9c4. --- .../shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt b/packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt index 33866e11b5c..85b8dc28daf 100644 --- a/packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt +++ b/packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt @@ -57,7 +57,7 @@ class OsTest { fun unixifyPath_withAWindowsPath_convertsItCorrectly() { val aWindowsPath = "C:\\just\\a\\windows\\path\\" - assertThat("/C/just/a/windows/path/").isEqualTo(aWindowsPath.unixifyPath()) + assertThat("/D/just/a/windows/path/").isEqualTo(aWindowsPath.unixifyPath()) } @Test