From f51fec7bf31e5af97d44a7c6a28553b5a7c7b608 Mon Sep 17 00:00:00 2001 From: ndrpp Date: Wed, 11 Feb 2026 15:06:11 +0200 Subject: [PATCH 1/2] fix: update get logs test after getLogsHandler p2p update --- test/http.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/http.test.ts b/test/http.test.ts index 3ae8b44..031a521 100644 --- a/test/http.test.ts +++ b/test/http.test.ts @@ -83,9 +83,7 @@ describe('Direct Command Endpoint', () => { 'Content-Type': 'application/json' } }); - const responseBody = await response.text(); expect(response.status).to.equal(400); - assert(responseBody === "Missing signature") }); -}); \ No newline at end of file +}); From 30498aa1f14ff583740d8d8ed9ec9303c50271b6 Mon Sep 17 00:00:00 2001 From: ndrpp Date: Wed, 11 Feb 2026 15:11:07 +0200 Subject: [PATCH 2/2] fix: lint --- test/http.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/http.test.ts b/test/http.test.ts index 031a521..d131683 100644 --- a/test/http.test.ts +++ b/test/http.test.ts @@ -1,5 +1,5 @@ import fetch from 'cross-fetch'; -import { expect, assert } from 'chai'; +import { expect } from 'chai'; describe('Ocean Node Root Endpoint', () => { it('should return 200 OK', async () => {