mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-08 20:12:39 +01:00
Use coroutine version in kau
This commit is contained in:
parent
96418eb386
commit
a1cf58e0ee
@ -204,7 +204,7 @@ dependencies {
|
||||
|
||||
// androidTestImplementation "io.mockk:mockk:${MOCKK}"
|
||||
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${COROUTINES}"
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${kau.coroutines}"
|
||||
|
||||
implementation "org.apache.commons:commons-text:${COMMONS_TEXT}"
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
||||
*/
|
||||
package com.pitchedapps.frost.utils
|
||||
|
||||
import kotlinx.coroutines.CompletableDeferred
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.ExperimentalCoroutinesApi
|
||||
import kotlinx.coroutines.GlobalScope
|
||||
@ -217,7 +216,6 @@ class CoroutineTest {
|
||||
@Ignore("Not yet working as unique only buffered removes the capacity limitation of the channel")
|
||||
@Test
|
||||
fun uniqueOnlyBuffer() {
|
||||
val completable = CompletableDeferred<Int>()
|
||||
val channel = Channel<Int>(3)
|
||||
runBlocking {
|
||||
|
||||
|
@ -23,8 +23,6 @@ ANDROID_GRADLE=3.2.1
|
||||
# https://github.com/diffplug/spotless/blob/master/plugin-gradle/CHANGES.md
|
||||
SPOTLESS=3.17.0
|
||||
|
||||
# https://github.com/Kotlin/kotlinx.coroutines/releases
|
||||
COROUTINES=1.0.1
|
||||
# https://github.com/bugsnag/bugsnag-android/releases
|
||||
BUGSNAG=4.9.3
|
||||
# https://github.com/bugsnag/bugsnag-android-gradle-plugin/releases
|
||||
|
Loading…
Reference in New Issue
Block a user