We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc19e9 commit ac3300bCopy full SHA for ac3300b
1 file changed
code-interpreter/tests/e2e/test_concurrent_execute.py
@@ -79,9 +79,8 @@ def test_concurrent_execute_requests_all_succeed() -> None:
79
errors.append(f"request {idx}: {exc}")
80
81
# Report all failures together for easier debugging
82
- assert not errors, (
83
- f"{len(errors)}/{CONCURRENCY} concurrent requests failed:\n"
84
- + "\n".join(errors)
+ assert not errors, f"{len(errors)}/{CONCURRENCY} concurrent requests failed:\n" + "\n".join(
+ errors
85
)
86
87
# Every successful response should have exit_code == 0
0 commit comments