Skip to content

Commit f2b846f

Browse files
committed
Fix Windows path expectation in OsTest.kt
1 parent 906468f commit f2b846f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils

packages/gradle-plugin/shared/src/test/kotlin/com/facebook/react/utils/OsTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class OsTest {
5757
fun unixifyPath_withAWindowsPath_convertsItCorrectly() {
5858
val aWindowsPath = "C:\\just\\a\\windows\\path\\"
5959

60-
assertThat("/D/just/a/windows/path/").isEqualTo(aWindowsPath.unixifyPath())
60+
assertThat("/C/just/a/windows/path/").isEqualTo(aWindowsPath.unixifyPath())
6161
}
6262

6363
@Test

0 commit comments

Comments
 (0)