From 8f30a5996253c77597079fbe06a02120bb437a78 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Wed, 18 Oct 2023 11:17:12 +0100 Subject: [PATCH] fix: bad it.only in tests --- yarn-project/sequencer-client/src/sequencer/sequencer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/sequencer-client/src/sequencer/sequencer.test.ts b/yarn-project/sequencer-client/src/sequencer/sequencer.test.ts index e198f2645ca6..792c6236ecd7 100644 --- a/yarn-project/sequencer-client/src/sequencer/sequencer.test.ts +++ b/yarn-project/sequencer-client/src/sequencer/sequencer.test.ts @@ -182,7 +182,7 @@ describe('sequencer', () => { expect(p2p.deleteTxs).toHaveBeenCalledWith([await invalidChainTx.getTxHash()]); }); - fit('aborts building a block if the chain moves underneath it', async () => { + it('aborts building a block if the chain moves underneath it', async () => { const tx = mockTx(); tx.data.constants.txContext.chainId = chainId; const block = L2Block.random(lastBlockNumber + 1);