From 40bfc25ea360f25de48ab9a9072caa4b7602bd67 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Tue, 24 Jul 2018 17:02:32 +0300 Subject: [PATCH] Increase timeout for VM testing. --- tests/testfut.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testfut.nim b/tests/testfut.nim index dbc698e9..c96b8be0 100644 --- a/tests/testfut.nim +++ b/tests/testfut.nim @@ -74,7 +74,7 @@ proc testFuture4(): Future[int] {.async.} = ## Test for future which will be completed before timeout exceeded. try: - var res = await wait(testFuture1(), 150) + var res = await wait(testFuture1(), 300) result = 6 except: result = -6