diff --git a/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts b/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts index 27536e1958f..1ee27a6480b 100644 --- a/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts +++ b/yarn-project/end-to-end/src/e2e_sandbox_example.test.ts @@ -36,8 +36,8 @@ describe('e2e_sandbox_example', () => { const sandboxUrl = 'http://localhost:8080'; // We create AztecRPC client connected to the sandbox URL and we use fetch with - // 3 automatic retries and a 1s, 2s and 3s intervals between failures. - const aztecRpc = createAztecRpcClient(sandboxUrl, makeFetch([1, 2, 3], false)); + // 5 automatic retries and a 1s, 2s, 3s, 3s and 3s intervals between failures. + const aztecRpc = createAztecRpcClient(sandboxUrl, makeFetch([1, 2, 3, 3, 3], false)); const nodeInfo = await aztecRpc.getNodeInfo();