[AA] Fall back to JVM stdlib dependencies in common test modules

Returns the old test behavior, until KT-63769 is implemented.
This commit is contained in:
Pavel Kirpichenkov
2023-11-24 12:04:35 +02:00
committed by Space Team
parent 0eb1a63a2f
commit fb9bf1782e
@@ -79,6 +79,7 @@ object TestModuleStructureFactory {
return when {
module.platform.isJvm() -> jvmStdlibAndJdkDependencies(testModule, project, testServices)
module.platform.isJs() -> jsStdlibDependencies(project, testServices)
module.platform.isCommon() -> jvmStdlibAndJdkDependencies(testModule, project, testServices) // TODO: KT-63769
else -> error("Unsupported platform ${module.platform} in this test")
}
}