Skip to content

Commit

Permalink
Fix small mistake in the Readme of kotlinx-coroutines-test (Kotlin#1865)
Browse files Browse the repository at this point in the history
There was a small mistake in the Readme of kotlinx-coroutines-test. A lateinit variable evaluated to null at the beginning.
  • Loading branch information
coroutineDispatcher committed Mar 16, 2020
1 parent 3592a8c commit 2d0e862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlinx-coroutines-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ important to ensure that [cleanupTestCoroutines][TestCoroutineScope.cleanupTestC
```kotlin
class TestClass {
private val testScope = TestCoroutineScope()
private lateinit var subject: Subject = null
private lateinit var subject: Subject

@Before
fun setup() {
Expand Down

0 comments on commit 2d0e862

Please sign in to comment.