Skip to content

Commit a608a33

Browse files
committed
Fix ordering bug in QuasarTest
1 parent 4ddfc91 commit a608a33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/kotlinx-coroutines-quasar/test/QuasarTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ class QuasarTest : TestBase() {
5858
return value
5959
}
6060
}
61-
fiber.start()
62-
expect(2)
61+
expect(2) // before starting fiber
62+
fiber.start() // now start fiber
6363
started.await() // wait fiber to start
6464
expect(4)
6565
result.complete("OK") // send Ok to fiber

0 commit comments

Comments
 (0)