Skip to content

Commit a38e7d5

Browse files
satoshunqwwdfsad
authored andcommitted
Remove unnecessary semicolon
1 parent 34eaa5c commit a38e7d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kotlinx-coroutines-core/common/test/AwaitTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ class AwaitTest : TestBase() {
3737
fun testAwaitAllLazy() = runTest {
3838
expect(1)
3939
val d = async(start = CoroutineStart.LAZY) {
40-
expect(2);
40+
expect(2)
4141
1
4242
}
4343
val d2 = async(start = CoroutineStart.LAZY) {
44-
expect(3);
44+
expect(3)
4545
2
4646
}
4747
assertEquals(listOf(1, 2), awaitAll(d, d2))

0 commit comments

Comments
 (0)