diff --git a/yarn-project/validator-client/src/checkpoint_builder.test.ts b/yarn-project/validator-client/src/checkpoint_builder.test.ts index 3adc2c09ba1c..ecb86c44f41c 100644 --- a/yarn-project/validator-client/src/checkpoint_builder.test.ts +++ b/yarn-project/validator-client/src/checkpoint_builder.test.ts @@ -142,7 +142,7 @@ describe('CheckpointBuilder', () => { async function mockSuccessfulBlock() { const block = await L2Block.random(blockNumber); - lightweightCheckpointBuilder.addBlock.mockResolvedValue({ block, timings: {} }); + lightweightCheckpointBuilder.addBlock.mockResolvedValue(block); processor.process.mockResolvedValue([[{ hash: TxHash.random() } as ProcessedTx], [], [], [], []]); return block; }