Compare commits

...

1 Commits

Author SHA1 Message Date
gt-oai
9ca636bd4f Fix parallelism flake 2026-02-04 18:08:06 +00:00

View File

@@ -149,6 +149,7 @@ async fn shell_tools_run_in_parallel() -> anyhow::Result<()> {
let shell_args = json!({
"command": "sleep 0.3",
"login": false,
"timeout_ms": 1_000,
});
let args_one = serde_json::to_string(&shell_args)?;
@@ -185,6 +186,7 @@ async fn mixed_parallel_tools_run_in_parallel() -> anyhow::Result<()> {
.to_string();
let shell_args = serde_json::to_string(&json!({
"command": "sleep 0.3",
"login": false,
"timeout_ms": 1_000,
}))?;