diff options
author | Allan Wang <me@allanwang.ca> | 2019-01-04 13:56:12 -0500 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-01-04 13:56:12 -0500 |
commit | a1cf58e0eee8d16576380e05a8d87e128242bf05 (patch) | |
tree | 1e0c2a7403d267a0db0d21e2a86acf2648cd4661 /app/src/test | |
parent | 96418eb38691b634bb176435b72b49971dc07c27 (diff) | |
download | frost-a1cf58e0eee8d16576380e05a8d87e128242bf05.tar.gz frost-a1cf58e0eee8d16576380e05a8d87e128242bf05.tar.bz2 frost-a1cf58e0eee8d16576380e05a8d87e128242bf05.zip |
Use coroutine version in kau
Diffstat (limited to 'app/src/test')
-rw-r--r-- | app/src/test/kotlin/com/pitchedapps/frost/utils/CoroutineTest.kt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/utils/CoroutineTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/utils/CoroutineTest.kt index 32a781df..e7520794 100644 --- a/app/src/test/kotlin/com/pitchedapps/frost/utils/CoroutineTest.kt +++ b/app/src/test/kotlin/com/pitchedapps/frost/utils/CoroutineTest.kt @@ -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 { |