From 403f25f007d3d4a9ea9e5d32e162d5cd3fd8f1f8 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Thu, 17 Jul 2025 09:40:32 +0200 Subject: [PATCH] Update tests/test_string_utils.py --- tests/test_string_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_string_utils.py b/tests/test_string_utils.py index de0a8358..15809290 100644 --- a/tests/test_string_utils.py +++ b/tests/test_string_utils.py @@ -40,10 +40,12 @@ def test_xfail_uppercase_digits(): # Expected fail test because uppercase won't change digits assert uppercase("abc123") == "ABC1234" +''' def test_sigkill(): print("🔪 Sending SIGKILL to self...") os.kill(os.getpid(), signal.SIGKILL) time.sleep(1) +''' def test_keyboard_interrupt_direct(): # Directly raise KeyboardInterrupt exception