Skip to content

Commit 3d31d85

Browse files
committed
Update test_logger.py
1 parent 67f2ae8 commit 3d31d85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_serverless/test_modules/test_logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def test_log_truncate(self):
141141

142142
# Patch print to capture stdout
143143
with patch("builtins.print") as mock_print:
144-
logger.log("a" * 10000000, "INFO", job_id)
144+
logger.log("a" * 5000, "INFO", job_id)
145145

146146
mock_print.assert_called_once_with(
147147
'INFO | aaaaaaaaaa\n...TRUNCATED...\naaaaaaaaaa',

0 commit comments

Comments
 (0)