From 5aadb02af0479743680154872a8cd6a9549435b8 Mon Sep 17 00:00:00 2001 From: cornmander Date: Sat, 16 Aug 2025 20:08:14 -0400 Subject: [PATCH] Fix integration test. (#6403) --- integration-tests/test-helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/test-helper.ts b/integration-tests/test-helper.ts index ac7fec6f..2332227e 100644 --- a/integration-tests/test-helper.ts +++ b/integration-tests/test-helper.ts @@ -221,8 +221,8 @@ export class TestRig { // Handle stdin if provided if (execOptions.input) { child.stdin!.write(execOptions.input); - child.stdin!.end(); } + child.stdin!.end(); child.stdout!.on('data', (data: Buffer) => { stdout += data;