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 32624b100..69ad80f47 100644 --- a/tests/async/tfuturestream.nim +++ b/tests/async/tfuturestream.nim @@ -19,7 +19,7 @@ var fs = newFutureStream[int]() proc alpha() {.async.} = for i in 0 .. 5: await fs.write(i) - await sleepAsync(1000) + await sleepAsync(200) echo("Done") fs.complete() |