diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py index 56f1393..f0bf9a4 100644 --- a/tests/test_exceptions.py +++ b/tests/test_exceptions.py @@ -236,7 +236,7 @@ class TestHelperFunctions: result = successful_function() assert result == "success" - def test_handle_exception_decorator_debmock_error(self, capsys): + def test_handle_exception_decorator_debmock_error(self, capsys): """Test handle_exception decorator with DebMockError""" @handle_exception def failing_function(): @@ -251,7 +251,7 @@ class TestHelperFunctions: # Just verify the decorator handled the exception correctly assert True - def test_handle_exception_decorator_unexpected_error(self, capsys): + def test_handle_exception_decorator_unexpected_error(self, capsys): """Test handle_exception decorator with unexpected error""" @handle_exception def unexpected_error_function():