From 95007080ff98f3a703dfae2f0fe8961b9852fa15 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Thu, 17 Jul 2025 20:42:02 -0700 Subject: [PATCH] Fix build_android GHA Job (#52694) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52694 build_android job is always failing, with this assertion. Seems like find/replace in D78484060 gone wrong? Changelog: [Internal] Reviewed By: sbuggay Differential Revision: D78534334 fbshipit-source-id: 291bdd01b41fa6efea00ed63a0dee8bdb14cbc3a --- .../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 85b8dc28daf..bf535ade745 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 @@ -55,7 +55,7 @@ class OsTest { @Test fun unixifyPath_withAWindowsPath_convertsItCorrectly() { - val aWindowsPath = "C:\\just\\a\\windows\\path\\" + val aWindowsPath = "D:\\just\\a\\windows\\path\\" assertThat("/D/just/a/windows/path/").isEqualTo(aWindowsPath.unixifyPath()) }