From ef7e0440d55270de8508173260a5c1a9342cb5ce Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Mon, 28 Oct 2024 09:41:23 +0000 Subject: [PATCH] chore: restore commented out code --- yarn-project/p2p/src/client/p2p_client.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/p2p/src/client/p2p_client.test.ts b/yarn-project/p2p/src/client/p2p_client.test.ts index 71ee5ab7e877..9591815b1ad0 100644 --- a/yarn-project/p2p/src/client/p2p_client.test.ts +++ b/yarn-project/p2p/src/client/p2p_client.test.ts @@ -105,8 +105,8 @@ describe('In-Memory P2P Client', () => { await client.start(); expect(client.isReady()).toEqual(true); - // await client.stop(); - // expect(client.isReady()).toEqual(false); + await client.stop(); + expect(client.isReady()).toEqual(false); }); it('adds txs to pool', async () => {