From c3e294f2a80f71c00deb02cdd56b0b41f182b499 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 24 Sep 2021 04:07:24 -0700 Subject: [PATCH] Move `PathUtilsTest.kt` to the correct package Summary: This file was placed in the wrong package. I'm moving it. Changelog: [Internal] [Changed] - Move `PathUtilsTest.kt` to the correct package Reviewed By: motiz88 Differential Revision: D31168890 fbshipit-source-id: 59d09b5fd329b776bd2800921889281a116c26ee --- .../com/facebook/react/{tests => utils}/PathUtilsTest.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/{tests => utils}/PathUtilsTest.kt (98%) diff --git a/packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/tests/PathUtilsTest.kt b/packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/utils/PathUtilsTest.kt similarity index 98% rename from packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/tests/PathUtilsTest.kt rename to packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/utils/PathUtilsTest.kt index 3710eef4af9..8c9b4434698 100644 --- a/packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/tests/PathUtilsTest.kt +++ b/packages/react-native-gradle-plugin/src/test/kotlin/com/facebook/react/utils/PathUtilsTest.kt @@ -5,10 +5,9 @@ * LICENSE file in the root directory of this source tree. */ -package com.facebook.react.tests +package com.facebook.react.utils import com.facebook.react.TestReactExtension -import com.facebook.react.utils.* import java.io.File import org.gradle.testfixtures.ProjectBuilder import org.junit.Assert.*