summary refs log tree commit diff stats
path: root/tests/async/tjsandnativeasync.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/async/tjsandnativeasync.nim')
-rw-r--r--tests/async/tjsandnativeasync.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/async/tjsandnativeasync.nim b/tests/async/tjsandnativeasync.nim
index 45839899f..c4db3bcfb 100644
--- a/tests/async/tjsandnativeasync.nim
+++ b/tests/async/tjsandnativeasync.nim
@@ -19,7 +19,7 @@ else:
 proc foo() {.async.} =
     echo "hi"
     var s = epochTime()
-    await sleepAsync(500)
+    await sleepAsync(200)
     var e = epochTime()
     doAssert(e - s > 0.1)
     echo "bye"