From 15a571387f14c1da45b850cb544d7c85258db4b2 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Wed, 18 May 2022 16:49:09 +0200 Subject: [PATCH] [test] Give integration test a bit more time to complete For slow windows CI runners. --- tests/testIntegration.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testIntegration.nim b/tests/testIntegration.nim index a42897d1..5f67fd37 100644 --- a/tests/testIntegration.nim +++ b/tests/testIntegration.nim @@ -89,7 +89,7 @@ ethersuite "Integration tests": client.post(baseurl1 & "/upload", "some file contents").body proc buy(cid: string): string = - let expiry = ((waitFor provider.currentTime()) + 5).toHex + let expiry = ((waitFor provider.currentTime()) + 10).toHex let json = %*{"duration": "0x100", "maxPrice": "0x400", "expiry": expiry} client.post(baseurl1 & "/storage/request/" & cid, $json).body