Increase timeout in worker11 test

(with current timeout the test is false positive on MIPS32 emulator)
This commit is contained in:
SvyatoslavScherbina
2020-09-07 15:02:25 +03:00
committed by GitHub
parent 9b727bdd9d
commit 94cc0a2415
@@ -102,7 +102,7 @@ val counters = Array(COUNT) { AtomicInt(0) }
}
}
workers.forEach {
it.executeAfter(1000*1000, {
it.executeAfter(10*1000*1000, {
println("DELAY EXECUTED")
assert(false)
}.freeze())