From e484c5f656fc1b10b9795727ffcb016d586aaf38 Mon Sep 17 00:00:00 2001 From: Rahul Kothari Date: Thu, 21 Sep 2023 15:00:20 +0100 Subject: [PATCH] chore: unskip test and fix params (#2454) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Álvaro Rodríguez --- yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts b/yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts index bf86c1d5e0e..f34f0b63b9b 100644 --- a/yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts +++ b/yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts @@ -65,7 +65,7 @@ describe('e2e_cross_chain_messaging', () => { await crossChainTestHarness?.stop(); }); - it.skip('Milestone 2: Deposit funds from L1 -> L2 and withdraw back to L1', async () => { + it('Milestone 2: Deposit funds from L1 -> L2 and withdraw back to L1', async () => { // Generate a claim secret using pedersen const l1TokenBalance = 1000000n; const bridgeAmount = 100n; @@ -97,9 +97,9 @@ describe('e2e_cross_chain_messaging', () => { // 3. Consume L1-> L2 message and mint private tokens on L2 await crossChainTestHarness.consumeMessageOnAztecAndMintSecretly( bridgeAmount, + secretHashForRedeemingMintedNotes, messageKey, secretForL2MessageConsumption, - secretHashForRedeemingMintedNotes, ); // tokens were minted privately in a TransparentNote which the owner (person who knows the secret) must redeem: await crossChainTestHarness.redeemShieldPrivatelyOnL2(bridgeAmount, secretForRedeemingMintedNotes);