From fd3972bda23b2c807d9089e28c2ae97191be47e9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 23 Nov 2025 06:52:08 +0000 Subject: [PATCH] Fix linting errors in security test Co-authored-by: samanhappy <2755122+samanhappy@users.noreply.github.com> --- tests/security/auth-bypass.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/security/auth-bypass.test.ts b/tests/security/auth-bypass.test.ts index 7deb2f5..b4777f3 100644 --- a/tests/security/auth-bypass.test.ts +++ b/tests/security/auth-bypass.test.ts @@ -33,9 +33,9 @@ import { cleanupAllServers } from '../../src/services/mcpService.js'; import { McpSettings, IUser } from '../../src/types/index.js'; describe('Authentication Bypass Security Tests', () => { - let appServer: AppServer; + let _appServer: AppServer; let httpServer: Server; - let baseURL: string; + let _baseURL: string; let testServerHelper: TestServerHelper; // Test users defined in settings @@ -107,9 +107,9 @@ describe('Authentication Bypass Security Tests', () => { testServerHelper = new TestServerHelper(); const result = await testServerHelper.createTestServer(settings); - appServer = result.appServer; + _appServer = result.appServer; httpServer = result.httpServer; - baseURL = result.baseURL; + _baseURL = result.baseURL; }, 60000); afterAll(async () => {