Skip to content

Commit

Permalink
Fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LogvinovLeon committed Feb 2, 2024
1 parent 371e107 commit 2a9c368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/noir-ethereum-api/test/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ describe.concurrent(
expect(await verifyStorageProof(proofData)).toEqual(true);
});

it('proof fails: invalid proof', async () => {
updateNestedField(inputMap, ['return', 'proof', '0'], incHexStr);
it('proof fails: invalid nonce', async () => {
updateNestedField(inputMap, ['return', 'nonce'], incHexStr);
const witnessMap = abiEncode(circuit.abi, inputMap, inputMap['return']);
const proofData = {
proof,
Expand Down

0 comments on commit 2a9c368

Please sign in to comment.