From f2c0300cbeadcd7c129d5e5aa31b91d7d5efafba Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 15 Jul 2025 15:59:43 +0200 Subject: [PATCH] Update tests/test_math_utils.py --- tests/test_math_utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_math_utils.py b/tests/test_math_utils.py index e6b3a2b9b..e103b3a32 100644 --- a/tests/test_math_utils.py +++ b/tests/test_math_utils.py @@ -19,9 +19,6 @@ def test_call_missing_function(): # Accessing a missing function attribute raises AttributeError getattr(math_utils, "non_existent_function")() -def test_infinite_loop(): - while True: - pass @pytest.mark.parametrize( "a, b, expected",