From 308eafe0e1ac9253dd122358bbd99c0ff666a2a2 Mon Sep 17 00:00:00 2001 From: Sergey Igushkin Date: Mon, 12 Nov 2018 17:26:07 +0300 Subject: [PATCH] (test data) Revert removal of coroutines opt-in from a test This test checks the coroutines opt-in, so it should stay there. Revert the change made in a64a76d5 --- .../resources/testProject/coroutinesProjectDSL/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/coroutinesProjectDSL/build.gradle b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/coroutinesProjectDSL/build.gradle index 30f34663a36..72503d73aeb 100644 --- a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/coroutinesProjectDSL/build.gradle +++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/coroutinesProjectDSL/build.gradle @@ -15,6 +15,12 @@ repositories { mavenCentral() } +kotlin { + experimental { + coroutines 'enable' + } +} + dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" } \ No newline at end of file