Skip to content

Commit ac3300b

Browse files
committed
.
1 parent 8dc19e9 commit ac3300b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

code-interpreter/tests/e2e/test_concurrent_execute.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,8 @@ def test_concurrent_execute_requests_all_succeed() -> None:
7979
errors.append(f"request {idx}: {exc}")
8080

8181
# Report all failures together for easier debugging
82-
assert not errors, (
83-
f"{len(errors)}/{CONCURRENCY} concurrent requests failed:\n"
84-
+ "\n".join(errors)
82+
assert not errors, f"{len(errors)}/{CONCURRENCY} concurrent requests failed:\n" + "\n".join(
83+
errors
8584
)
8685

8786
# Every successful response should have exit_code == 0

0 commit comments

Comments
 (0)