Increase timeout for VM testing.

This commit is contained in:
cheatfate 2018-07-24 17:02:32 +03:00
parent f4803c61ae
commit 40bfc25ea3
1 changed files with 1 additions and 1 deletions

View File

@ -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