Skip to content

Commit c284393

Browse files
ericdalloeca-agent
andcommitted
Fix Windows integration test for background jobs
Replace `&&` with `;` in the bg-shell mock command. PowerShell does not support `&&` as a statement separator, causing the background job to fail immediately on Windows CI. Semicolons work in both bash and PowerShell. 🤖 Generated with [eca](https://eca.dev) Co-Authored-By: eca-agent <git@eca.dev>
1 parent 6a92a4c commit c284393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/llm_mock/anthropic.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@
318318
{:type "content_block_delta"
319319
:index 1
320320
:delta {:type "input_json_delta"
321-
:partial_json "{\"command\":\"echo bg-test-output && sleep 30\",\"background\":\"bg-test\"}"}})
321+
:partial_json "{\"command\":\"echo bg-test-output; sleep 30\",\"background\":\"bg-test\"}"}})
322322
(sse-send! ch "message_delta"
323323
{:type "message_delta"
324324
:delta {:stop_reason "tool_use"}

0 commit comments

Comments
 (0)