From 67af6867fd019aeaffd4eb71ee74d08065a93782 Mon Sep 17 00:00:00 2001 From: ligi Date: Sun, 10 Oct 2021 17:38:34 +0200 Subject: [PATCH] Set kotlin version for tests otherwise Idea was freaking out at some point --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 75a6a3dd..f3ce9a79 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ dependencies { implementation 'com.squareup.moshi:moshi-kotlin:1.12.0' implementation 'com.squareup.okhttp3:okhttp:4.9.2' - testImplementation "org.jetbrains.kotlin:kotlin-test" - testImplementation "org.jetbrains.kotlin:kotlin-test-junit" + testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" + testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}" }