summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcornmander <[email protected]>2025-08-16 20:08:14 -0400
committerGitHub <[email protected]>2025-08-17 00:08:14 +0000
commit5aadb02af0479743680154872a8cd6a9549435b8 (patch)
treeceb5db29b080330a705e24e3a14e5589ae98d82c
parentbc60257e220a77c2d6e57ea4bfd1f0a483a1344c (diff)
Fix integration test. (#6403)
-rw-r--r--integration-tests/test-helper.ts2
1 files changed, 1 insertions, 1 deletions
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;