From 323e2ebcbd39ae49366b30f33c2fa499a65160bb Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 10 Dec 2024 09:44:31 -0300 Subject: [PATCH] chore: Bump avm tree test timeout Fixes [this timeout](https://github.com/AztecProtocol/aztec-packages/actions/runs/12255972396/job/34190828103?pr=10552#step:5:1873) --- yarn-project/simulator/src/avm/avm_tree.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/simulator/src/avm/avm_tree.test.ts b/yarn-project/simulator/src/avm/avm_tree.test.ts index ead35b02af2..31c8c015e2a 100644 --- a/yarn-project/simulator/src/avm/avm_tree.test.ts +++ b/yarn-project/simulator/src/avm/avm_tree.test.ts @@ -97,7 +97,7 @@ beforeEach(async () => { slots = Array.from({ length: 64 }, (_, i) => new Fr(i + 128)); values = Array.from({ length: 64 }, (_, i) => new Fr(i + 256)); -}, 10_000); +}, 30_000); /****************************************************/ /*************** Test Cases *************************/