Skip to content

Commit 5f3b0fd

Browse files
committed
test(e2e): migrate e2e_amm to FAST_E2E_SETUP_OPTS
Missed in batch 2 because of its third argument (syncChainTip: 'checkpointed').
1 parent dbb473b commit 5f3b0fd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

yarn-project/end-to-end/src/e2e_amm.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { TokenContract } from '@aztec/noir-contracts.js/Token';
66

77
import { jest } from '@jest/globals';
88

9-
import { PIPELINING_SETUP_OPTS } from './fixtures/fixtures.js';
9+
import { FAST_E2E_SETUP_OPTS } from './fixtures/fixtures.js';
1010
import { deployToken, mintTokensToPrivate } from './fixtures/token_utils.js';
1111
import { setup } from './fixtures/utils.js';
1212
import type { TestWallet } from './test-wallet/test_wallet.js';
@@ -51,7 +51,7 @@ describe('AMM', () => {
5151
wallet,
5252
accounts: [adminAddress, liquidityProviderAddress, otherLiquidityProviderAddress, swapperAddress],
5353
logger,
54-
} = await setup(4, { ...PIPELINING_SETUP_OPTS }, { syncChainTip: 'checkpointed' }));
54+
} = await setup(4, { ...FAST_E2E_SETUP_OPTS }, { syncChainTip: 'checkpointed' }));
5555

5656
({ contract: token0 } = await deployToken(wallet, adminAddress, 0n, logger));
5757
({ contract: token1 } = await deployToken(wallet, adminAddress, 0n, logger));

0 commit comments

Comments
 (0)