Skip to content

Commit

Permalink
chore: reenable public teardown in orchestrator test
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanks12 committed Mar 3, 2025
1 parent f72ccc2 commit 9066205
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ describe('prover/orchestrator/public-functions', () => {
): Promise<Tx> {
const setupCallSeed = (i: number) => i * txSeed;
const appCallSeed = (i: number) => (i + numberOfNonRevertiblePublicCallRequests) * txSeed;
//const teardownCallSeed = (numberOfNonRevertiblePublicCallRequests + numberOfRevertiblePublicCallRequests) * txSeed;
const teardownCallSeed =
(numberOfNonRevertiblePublicCallRequests + numberOfRevertiblePublicCallRequests) * txSeed;

const setupCalls = Array.from({ length: numberOfNonRevertiblePublicCallRequests }, (_, i) =>
createMintCall(/*seed=*/ setupCallSeed(i)),
Expand All @@ -131,8 +132,7 @@ describe('prover/orchestrator/public-functions', () => {
/*sender=*/ admin,
/*setupCalls=*/ setupCalls,
/*appCalls=*/ appCalls,
// TODO(dbanks12): Teardown breaks!
///*teardownCall=*/ createMintCall(/*seed=*/ teardownCallSeed),
/*teardownCall=*/ createMintCall(/*seed=*/ teardownCallSeed),
);
}
});
Expand Down

0 comments on commit 9066205

Please sign in to comment.