Skip to content

Commit

Permalink
Loosen timing restriction for CI (which seems to be slower than my lo…
Browse files Browse the repository at this point in the history
…cal machine)
  • Loading branch information
birchmd committed Aug 22, 2023
1 parent 872e47b commit 96c66ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine-tests/src/tests/sanity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
);
}

Expand Down

0 comments on commit 96c66ef

Please sign in to comment.