From c43fcf2dedaf3f873e7c4b86ae5ffb5b25e7597a Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 8 Nov 2025 13:39:40 -0800 Subject: [PATCH] test_redaction_responses_api --- .../logging_callback_tests/test_logging_redaction_e2e_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/logging_callback_tests/test_logging_redaction_e2e_test.py b/tests/logging_callback_tests/test_logging_redaction_e2e_test.py index c093957ec4..3f432f9119 100644 --- a/tests/logging_callback_tests/test_logging_redaction_e2e_test.py +++ b/tests/logging_callback_tests/test_logging_redaction_e2e_test.py @@ -124,7 +124,7 @@ async def test_global_redaction_off_with_dynamic_params(turn_off_message_logging async def test_redaction_responses_api(): """Test redaction with ResponsesAPIResponse format""" litellm.turn_off_message_logging = True - test_custom_logger = TestCustomLogger() + test_custom_logger = TestCustomLogger(turn_off_message_logging=True) litellm.callbacks = [test_custom_logger] # Mock a ResponsesAPIResponse-style response @@ -174,7 +174,7 @@ async def test_redaction_responses_api(): async def test_redaction_responses_api_stream(): """Test redaction with ResponsesAPIResponse format""" litellm.turn_off_message_logging = True - test_custom_logger = TestCustomLogger() + test_custom_logger = TestCustomLogger(turn_off_message_logging=True) litellm.callbacks = [test_custom_logger] # Mock a ResponsesAPIResponse-style response with streaming chunks