Fix completion test: add coroutines-compat jar dependency

Related to KT-34582
This commit is contained in:
Ilya Gorbunov
2020-01-22 07:18:19 +03:00
parent 3bd3d61469
commit c37a2d3dc3
2 changed files with 5 additions and 2 deletions
@@ -39,7 +39,10 @@ public class KotlinWithJdkAndRuntimeLightProjectDescriptor extends KotlinJdkAndL
}
@NotNull
public static final KotlinWithJdkAndRuntimeLightProjectDescriptor INSTANCE = new KotlinWithJdkAndRuntimeLightProjectDescriptor();
public static final KotlinWithJdkAndRuntimeLightProjectDescriptor INSTANCE = new KotlinWithJdkAndRuntimeLightProjectDescriptor(
Arrays.asList(ForTestCompileRuntime.runtimeJarForTests(),
ForTestCompileRuntime.coroutinesCompatForTests())
);
public static KotlinWithJdkAndRuntimeLightProjectDescriptor getInstance(LanguageLevel level) {
return new KotlinWithJdkAndRuntimeLightProjectDescriptor() {