Merge pull request #4979 from dkapil/task/BAEL-8231

BAEL-8231 Disabled "is working" statement in a test case in Coroutine…
This commit is contained in:
Loredana Crusoveanu 2018-08-16 22:47:39 +03:00 committed by GitHub
commit fad21ead40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")
}
}