From 1a410b1ea8cc4ab0261db1106eb857cb1ada52d2 Mon Sep 17 00:00:00 2001 From: Gregor Date: Fri, 29 Nov 2024 14:48:05 +0100 Subject: [PATCH] fix unit test --- src/lib/proof-system/proof-system.unit-test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib/proof-system/proof-system.unit-test.ts b/src/lib/proof-system/proof-system.unit-test.ts index a88acb861..67dfca967 100644 --- a/src/lib/proof-system/proof-system.unit-test.ts +++ b/src/lib/proof-system/proof-system.unit-test.ts @@ -67,7 +67,7 @@ it('pickles rule creation', async () => { { name: 'mock' }, methodIntf, [], - [] + [EmptyProof] ); await equivalentAsync( @@ -133,7 +133,6 @@ it('pickles rule creation: nested proof', async () => { expect(methodIntf).toEqual({ methodName: 'main', args: [NestedProof2], - numberOfProofs: 2, }); // store compiled tag @@ -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);