From 60e2f732ef21e5ae9c28be977d6d5d74b81ff7aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Izabela=20O=C5=BCd=C5=BCe=C5=84ska?= Date: Tue, 28 May 2024 11:38:00 +0200 Subject: [PATCH] Remove slicing where unnecessary --- .../oracles/src/noir/oracles/rpc/accountOracle.int.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts b/ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts index e21fcf10..8c17a0ad 100644 --- a/ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts +++ b/ethereum/oracles/src/noir/oracles/rpc/accountOracle.int.test.ts @@ -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'); @@ -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 }); });