From a1f3af152aaa37bca105f90581b032fb16f1f9d0 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Wed, 18 Oct 2023 11:32:17 +0100 Subject: [PATCH] fix: bad it.only in tests (#2900) Please provide a paragraph or two giving a summary of the change, including relevant motivation and context. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- 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 e198f2645ca..792c6236ecd 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);