Skip to content

Commit 2d0e862

Browse files
authored
Fix small mistake in the Readme of kotlinx-coroutines-test (#1865)
There was a small mistake in the Readme of kotlinx-coroutines-test. A lateinit variable evaluated to null at the beginning.
1 parent 3592a8c commit 2d0e862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ important to ensure that [cleanupTestCoroutines][TestCoroutineScope.cleanupTestC
277277
```kotlin
278278
class TestClass {
279279
private val testScope = TestCoroutineScope()
280-
private lateinit var subject: Subject = null
280+
private lateinit var subject: Subject
281281

282282
@Before
283283
fun setup() {

0 commit comments

Comments
 (0)