We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f2ae8 commit 3d31d85Copy full SHA for 3d31d85
1 file changed
tests/test_serverless/test_modules/test_logger.py
@@ -141,7 +141,7 @@ def test_log_truncate(self):
141
142
# Patch print to capture stdout
143
with patch("builtins.print") as mock_print:
144
- logger.log("a" * 10000000, "INFO", job_id)
+ logger.log("a" * 5000, "INFO", job_id)
145
146
mock_print.assert_called_once_with(
147
'INFO | aaaaaaaaaa\n...TRUNCATED...\naaaaaaaaaa',
0 commit comments