From b75bfd0a40547eab1d4700da80819d51e15a4428 Mon Sep 17 00:00:00 2001 From: ludamad Date: Fri, 29 Nov 2024 13:07:34 -0500 Subject: [PATCH] chore: skip A->B B->A e2e_2_pxes test (#10297) Until #10296 --------- Co-authored-by: Santiago Palladino --- LICENSE | 6 +++--- yarn-project/end-to-end/src/e2e_2_pxes.test.ts | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index f49a4e16e68..8dada3edaf5 100644 --- a/LICENSE +++ b/LICENSE @@ -178,7 +178,7 @@ APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" + boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright {yyyy} {name of copyright owner} Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -198,4 +198,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. diff --git a/yarn-project/end-to-end/src/e2e_2_pxes.test.ts b/yarn-project/end-to-end/src/e2e_2_pxes.test.ts index c95e16b9d7a..d3dded0788d 100644 --- a/yarn-project/end-to-end/src/e2e_2_pxes.test.ts +++ b/yarn-project/end-to-end/src/e2e_2_pxes.test.ts @@ -57,7 +57,8 @@ describe('e2e_2_pxes', () => { await teardownA(); }); - it('transfers funds from user A to B via PXE A followed by transfer from B to A via PXE B', async () => { + // TODO #10296 + it.skip('transfers funds from user A to B via PXE A followed by transfer from B to A via PXE B', async () => { const initialBalance = 987n; const transferAmount1 = 654n; const transferAmount2 = 323n;