From b488177ffdf318daa423bdd0a6ee166939e8c0dc Mon Sep 17 00:00:00 2001 From: Yoggy <280342032+yoggydev@users.noreply.github.com> Date: Mon, 24 Aug 2026 10:52:56 +0900 Subject: [PATCH] Fix syntax for fake_kill definition in test_process.py --- tests/test_litellm/proxy/client/cli/autoroute/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_litellm/proxy/client/cli/autoroute/test_process.py b/tests/test_litellm/proxy/client/cli/autoroute/test_process.py index 915de4dd807..673cd304e64 100644 --- a/tests/test_litellm/proxy/client/cli/autoroute/test_process.py +++ b/tests/test_litellm/proxy/client/cli/autoroute/test_process.py @@ -331,7 +331,7 @@ class TestTerminateHardKillSignal: this same "already dead or inaccessible" case. """ - def fake_kill: Final = Mock(side_effect=raised) + fake_kill: Final = Mock(side_effect=raised) monkeypatch.setattr(process_module.os, "kill", fake_kill) monkeypatch.setattr(process_module, "is_running", lambda pid: True)