Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mitschabaude committed Nov 29, 2024
1 parent 34208df commit 1a410b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib/proof-system/proof-system.unit-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ it('pickles rule creation', async () => {
{ name: 'mock' },
methodIntf,
[],
[]
[EmptyProof]
);

await equivalentAsync(
Expand Down Expand Up @@ -133,7 +133,6 @@ it('pickles rule creation: nested proof', async () => {
expect(methodIntf).toEqual({
methodName: 'main',
args: [NestedProof2],
numberOfProofs: 2,
});

// store compiled tag
Expand All @@ -147,7 +146,7 @@ it('pickles rule creation: nested proof', async () => {
{ name: 'mock' },
methodIntf,
[],
[]
[EmptyProof, EmptyProof]
);

let dummy = await EmptyProof.dummy(Field(0), undefined, 0);
Expand Down

0 comments on commit 1a410b1

Please sign in to comment.