From b88f1af666844612213dc803fe64cc461d3dc1cc Mon Sep 17 00:00:00 2001 From: robojerk Date: Sun, 3 Aug 2025 23:23:59 +0000 Subject: [PATCH] fix indentation error in test_exceptions.py --- tests/test_exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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():