fix indentation error in test_exceptions.py
Some checks failed
Build Deb-Mock Package / build (push) Successful in 52s
Test Deb-Mock Build / test (push) Failing after 56s

This commit is contained in:
robojerk 2025-08-03 23:23:59 +00:00
parent 11d2cfa90d
commit b88f1af666

View file

@ -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():