0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

Adding kotlin-test-junit to androidTestImplementation

Following https://stackoverflow.com/a/55218573/414269
It ensures the IDE don't show error on `import kotlin.test.junit.JUnitAsserter.assertNotNull`
This commit is contained in:
Arthur Milchior 2022-09-09 01:43:58 +02:00 committed by lukstbit
parent 9b9b259bf6
commit 3ca29fd20e

View File

@ -349,6 +349,7 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
androidTestImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
android {