From 2536cb49cee04c7c1a0b87bef855bfb8d66f59ee Mon Sep 17 00:00:00 2001 From: Liran Cohen Date: Wed, 1 May 2024 12:26:58 -0400 Subject: [PATCH] fix linting --- packages/agent/tests/rpc-client.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/agent/tests/rpc-client.spec.ts b/packages/agent/tests/rpc-client.spec.ts index e097c26bf..e26316c78 100644 --- a/packages/agent/tests/rpc-client.spec.ts +++ b/packages/agent/tests/rpc-client.spec.ts @@ -226,7 +226,7 @@ describe('RPC Clients', () => { // request with http try { - await httpOnlyClient.getServerInfo('ws://127.0.0.1') + await httpOnlyClient.getServerInfo('ws://127.0.0.1'); expect.fail('Expected error to be thrown'); } catch (error: any) { expect(error.message).to.equal('no ws: transport client available');