File tree 2 files changed +8
-2
lines changed 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,10 @@ dependencies {
215
215
}
216
216
testImplementation Libs . coreTesting
217
217
testImplementation Libs . junit
218
- testImplementation Libs . kotlinCoroutinesTest
218
+ testImplementation (Libs . kotlinCoroutinesTest) {
219
+ // workaround for https://github.com/Kotlin/kotlinx.coroutines/issues/2023
220
+ exclude group : " org.jetbrains.kotlinx" , module : " kotlinx-coroutines-debug"
221
+ }
219
222
testImplementation Libs . mockitoCore
220
223
testImplementation Libs . threeTenBp
221
224
testImplementation Libs . truth
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ android {
31
31
dependencies {
32
32
33
33
implementation Libs . junit
34
- implementation Libs . kotlinCoroutinesTest
34
+ implementation (Libs . kotlinCoroutinesTest) {
35
+ // workaround for https://github.com/Kotlin/kotlinx.coroutines/issues/2023
36
+ exclude group : " org.jetbrains.kotlinx" , module : " kotlinx-coroutines-debug"
37
+ }
35
38
implementation Libs . liveDataKtx
36
39
implementation Libs . truth
37
40
api Libs . mockitoKotlin
You can’t perform that action at this time.
0 commit comments