[Analysis, build] replace testApi -> testImplementation in build.gradle.kts where it's possible

This commit is contained in:
Ilya Kirillov
2023-05-31 14:28:27 +02:00
committed by Space Team
parent 78f09409b7
commit 1eb0862820
9 changed files with 72 additions and 62 deletions
@@ -10,11 +10,11 @@ dependencies {
api(intellijCore())
testApiJUnit5()
testApi(project(":kotlin-test:kotlin-test-junit"))
testApi(projectTests(":compiler:tests-common"))
testImplementation(project(":kotlin-test:kotlin-test-junit"))
testImplementation(projectTests(":compiler:tests-common"))
testApi(projectTests(":compiler:test-infrastructure-utils"))
testApi(projectTests(":compiler:test-infrastructure"))
testApi(projectTests(":compiler:tests-common-new"))
testImplementation(projectTests(":compiler:tests-common-new"))
}
sourceSets {