Skip to content

Commit

Permalink
Remove slicing where unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
Pasifaee committed May 28, 2024
1 parent 92816da commit 60e2f73
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe('accountOracle', () => {
accountProofConfig.maxPrefixedKeyNibbleLen + accountProofConfig.maxValueLen
);
expect(proofInputValuePart).toMatchSnapshot();
<<<<<<< HEAD:ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts
<<<<<<< HEAD:ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts
const proofInputDepthPart = account[OFFSETS.PROOF_INPUT][account[OFFSETS.PROOF_INPUT].length - 1];
expect(proofInputDepthPart).toStrictEqual('0x09');
Expand All @@ -42,5 +43,9 @@ describe('accountOracle', () => {
);
expect(proofInputDepthPart).toStrictEqual(['0x09']);
>>>>>>> ea830395 (Update account & proof oracles tests):ethereum/oracles/src/noir/oracles/accountOracle.int.test.ts
=======
const proofInputDepthPart = account[OFFSETS.PROOF_INPUT][account[OFFSETS.PROOF_INPUT].length - 1];
expect(proofInputDepthPart).toStrictEqual('0x09');
>>>>>>> f869f18a (Remove slicing where unnecessary):ethereum/oracles/src/noir/oracles/accountOracle.int.test.ts
});
});

0 comments on commit 60e2f73

Please sign in to comment.