From 83ab4f143d7353359501a1cafc00b06b609819ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=B0=B8=E8=B5=AB?= <1259085392@qq.com> Date: Thu, 26 Mar 2026 03:35:17 +0900 Subject: [PATCH] test: shorten hanging lsp fixture sleep --- tests/integration/fixtures/hanging_lsp_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/fixtures/hanging_lsp_server.py b/tests/integration/fixtures/hanging_lsp_server.py index 46a862dca..d34fccd52 100644 --- a/tests/integration/fixtures/hanging_lsp_server.py +++ b/tests/integration/fixtures/hanging_lsp_server.py @@ -6,7 +6,7 @@ import time def main() -> None: - time.sleep(60) + time.sleep(5) if __name__ == "__main__":