diff --git a/README.md b/README.md index 9ae9dbc..b9ca255 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ The same goes for `testIn`, but at the end of the calling coroutine: runTest { turbineScope { val turbine = flowOf("one", "two").testIn(backgroundScope) - turbine.assertEquals("one", awaitItem()) + assertEquals("one", turbine.awaitItem()) } } ```