From b494a670ebc3b59fa226531bb91fd414bfb06275 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Mon, 21 Jul 2025 01:08:27 +0200 Subject: [PATCH] Update tests/test_string_utils.py --- tests/test_string_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_string_utils.py b/tests/test_string_utils.py index f2a0e995..2aefbc0c 100644 --- a/tests/test_string_utils.py +++ b/tests/test_string_utils.py @@ -40,12 +40,12 @@ def test_xfail_uppercase_digits(): # Expected fail test because uppercase won't change digits assert uppercase("abc123") == "ABC1234" - +''' def test_sigkill(): # Kill directly the program os.kill(os.getpid(), signal.SIGKILL) time.sleep(1) - +''' def test_keyboard_interrupt_direct(): # Directly raise KeyboardInterrupt exception raise KeyboardInterrupt()