Skip to content

Commit 663b32b

Browse files
committed
fix up some unneeded imports
1 parent f2787d8 commit 663b32b

File tree

1 file changed

+0
-6
lines changed
  • library/src/androidTest/java/org/xmtp/android/library

1 file changed

+0
-6
lines changed

library/src/androidTest/java/org/xmtp/android/library/GroupTest.kt

-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package org.xmtp.android.library
33
import androidx.test.ext.junit.runners.AndroidJUnit4
44
import androidx.test.platform.app.InstrumentationRegistry
55
import app.cash.turbine.test
6-
import kotlinx.coroutines.ExperimentalCoroutinesApi
76
import kotlinx.coroutines.runBlocking
87
import org.junit.Assert.assertEquals
98
import org.junit.Assert.assertThrows
@@ -217,11 +216,9 @@ class GroupTest {
217216
assertEquals(ReactionSchema.Unicode, content?.schema)
218217
}
219218

220-
@OptIn(ExperimentalCoroutinesApi::class)
221219
@Test
222220
fun testCanStreamGroupMessages() = kotlinx.coroutines.test.runTest {
223221
val group = boClient.conversations.newGroup(listOf(alix.walletAddress.lowercase()))
224-
225222
group.streamMessages().test {
226223
group.send("hi")
227224
assertEquals("hi", awaitItem().body)
@@ -230,7 +227,6 @@ class GroupTest {
230227
}
231228
}
232229

233-
@OptIn(ExperimentalCoroutinesApi::class)
234230
@Test
235231
fun testCanStreamDecryptedGroupMessages() = kotlinx.coroutines.test.runTest {
236232
val group = boClient.conversations.newGroup(listOf(alix.walletAddress))
@@ -243,7 +239,6 @@ class GroupTest {
243239
}
244240
}
245241

246-
@OptIn(ExperimentalCoroutinesApi::class)
247242
@Test
248243
fun testCanStreamGroups() = kotlinx.coroutines.test.runTest {
249244
boClient.conversations.streamGroups().test {
@@ -256,7 +251,6 @@ class GroupTest {
256251
}
257252
}
258253

259-
@OptIn(ExperimentalCoroutinesApi::class)
260254
@Test
261255
fun testCanStreamGroupsAndConversations() = kotlinx.coroutines.test.runTest {
262256
boClient.conversations.streamAll().test {

0 commit comments

Comments
 (0)