Skip to content

Commit 5448803

Browse files
committed
Fix tests
1 parent a8e6d35 commit 5448803

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yarn-project/prover-node/src/job/epoch-proving-job.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe('epoch-proving-job', () => {
130130
expect(db.close).toHaveBeenCalledTimes(NUM_BLOCKS);
131131
expect(publicProcessor.process).toHaveBeenCalledTimes(NUM_BLOCKS);
132132
expect(publisher.submitEpochProof).toHaveBeenCalledWith(
133-
expect.objectContaining({ epochNumber, proof, publicInputs, attestations: [] }),
133+
expect.objectContaining({ epochNumber, proof, publicInputs, attestations: attestations.map(a => a.toViem()) }),
134134
);
135135
});
136136

0 commit comments

Comments
 (0)