BAEL-8231 Disabled "is working" statement in a test case in CoroutinesTest.kt

This commit is contained in:
Dhawal Kapil 2018-08-17 00:19:06 +05:30
parent e7485a1813
commit cecb8f2c2c
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class CoroutinesTest {
//given
val job = launch(CommonPool) {
while (isActive) {
println("is working")
//println("is working")
}
}