diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt similarity index 98% rename from native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt rename to native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt index 27afb7e94fe..7cba59f247f 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt @@ -16,7 +16,8 @@ import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Test import kotlin.coroutines.Continuation -class CompressedNamesTest { +@Suppress("ClassName") +class TestInfra_CompressedNamesTest { @Test fun targetNameCompression() { val knownTargets: Set = KonanTarget.predefinedTargets.values.toSet() diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt similarity index 96% rename from native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt rename to native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt index c47d2bccf48..5b3ce28f89c 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt @@ -15,12 +15,13 @@ import org.junit.jupiter.api.fail import java.io.File import kotlin.io.path.createTempDirectory -class GlobsExpansionTest { +@Suppress("ClassName") +class TestInfra_GlobsExpansionTest { private lateinit var testDir: File @BeforeEach fun setUp() { - testDir = createTempDirectory(GlobsExpansionTest::class.java.sanitizedName).toFile() + testDir = createTempDirectory(TestInfra_GlobsExpansionTest::class.java.sanitizedName).toFile() } @Test