We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 603bd79 commit fe9f50bCopy full SHA for fe9f50b
reactive/kotlinx-coroutines-jdk9/test/PublishTest.kt
@@ -278,10 +278,8 @@ class PublishTest : TestBase() {
278
val publisher = flowPublish {
279
assertFailsWith<NullPointerException> { send(null) }
280
assertFailsWith<NullPointerException> { trySend(null) }
281
- @Suppress("DEPRECATION")
282
- assertFailsWith<NullPointerException> { offer(null) }
283
send("OK")
284
}
285
assertEquals("OK", publisher.awaitFirstOrNull())
286
287
-}
+}
0 commit comments