diff options
Diffstat (limited to 'tests/async/tfuturestream.nim')
-rw-r--r-- | tests/async/tfuturestream.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tfuturestream.nim b/tests/async/tfuturestream.nim index b5772d5ac..a019df400 100644 --- a/tests/async/tfuturestream.nim +++ b/tests/async/tfuturestream.nim @@ -17,7 +17,7 @@ var fs = newFutureStream[int]() proc alpha() {.async.} = for i in 0 .. 5: await fs.write(i) - await sleepAsync(200) + await sleepAsync(100) echo("Done") fs.complete() |