summary refs log tree commit diff stats
path: root/tests/async/tpendingcheck.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/async/tpendingcheck.nim')
-rw-r--r--tests/async/tpendingcheck.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tpendingcheck.nim b/tests/async/tpendingcheck.nim
index a5537d8cb..4eceb0353 100644
--- a/tests/async/tpendingcheck.nim
+++ b/tests/async/tpendingcheck.nim
@@ -7,7 +7,7 @@ import asyncdispatch
 doAssert(not hasPendingOperations())
 
 proc test() {.async.} =
-  await sleepAsync(100)
+  await sleepAsync(50)
 
 var f = test()
 while not f.finished: