Skip to content

Commit

Permalink
fix: Do not assume blocks as proven in e2e-prover tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Sep 27, 2024
1 parent 1612909 commit b3c735f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion yarn-project/end-to-end/src/e2e_prover/e2e_prover_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ export class FullProverTest {

constructor(testName: string, private minNumberOfTxsPerBlock: number, private realProofs = true) {
this.logger = createDebugLogger(`aztec:full_prover_test:${testName}`);
this.snapshotManager = createSnapshotManager(`full_prover_integration/${testName}`, dataPath);
this.snapshotManager = createSnapshotManager(
`full_prover_integration/${testName}`,
dataPath,
{},
{ assumeProvenThrough: undefined },
);
}

/**
Expand Down

0 comments on commit b3c735f

Please sign in to comment.