From 96c66ef080200f6737921db80e26fb3c9d7e7eec Mon Sep 17 00:00:00 2001 From: Michael Birch Date: Tue, 22 Aug 2023 17:45:29 +0200 Subject: [PATCH] Loosen timing restriction for CI (which seems to be slower than my local machine) --- engine-tests/src/tests/sanity.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine-tests/src/tests/sanity.rs b/engine-tests/src/tests/sanity.rs index f80092b1c..ec8514719 100644 --- a/engine-tests/src/tests/sanity.rs +++ b/engine-tests/src/tests/sanity.rs @@ -57,8 +57,8 @@ fn bench_memory_get_standalone() { "Infinite loops in the EVM run out of gas" ); assert!( - duration < 2.0, - "Must complete this task in under 2s (in release build). Time taken: {duration} s", + duration < 8.0, + "Must complete this task in under 8s (in release build). Time taken: {duration} s", ); }