diff --git a/src/daemon/admin/commands/__tests__/ping.test.ts b/src/daemon/admin/commands/__tests__/ping.test.ts index 2bd48af..79710fd 100644 --- a/src/daemon/admin/commands/__tests__/ping.test.ts +++ b/src/daemon/admin/commands/__tests__/ping.test.ts @@ -8,7 +8,7 @@ describe('ping', () => { resetMocks(); }); - it('should respond with ok', async () => { + it('should respond with pong', async () => { const admin = createMockAdmin(); const req = createMockRequest([]); @@ -18,7 +18,7 @@ describe('ping', () => { expect(admin.rpc.sendResponse).toHaveBeenCalledWith( req.id, req.pubkey, - 'ok', + 'pong', expect.anything() ); });