Skip to content

Commit af308c1

Browse files
authored
chore: Test fix (#19249)
This PR simply fixes a broken test.
2 parents afe7196 + 14dc40f commit af308c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yarn-project/p2p/src/services/tx_provider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ describe('TxProvider', () => {
203203
// Check instrumentation calls
204204
expect(incTxsFromMempoolSpy).toHaveBeenCalledWith(5);
205205
expect(incTxsFromProposalsSpy).toHaveBeenCalledWith(1);
206-
expect(incTxsFromP2PSpy).toHaveBeenCalledWith(2);
206+
expect(incTxsFromP2PSpy).toHaveBeenCalledWith(2, 10);
207207
expect(incMissingTxsSpy).toHaveBeenCalledWith(2);
208208
});
209209

0 commit comments

Comments
 (0)