diff options
| author | cornmander <[email protected]> | 2025-08-16 20:08:14 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-17 00:08:14 +0000 |
| commit | 5aadb02af0479743680154872a8cd6a9549435b8 (patch) | |
| tree | ceb5db29b080330a705e24e3a14e5589ae98d82c /integration-tests | |
| parent | bc60257e220a77c2d6e57ea4bfd1f0a483a1344c (diff) | |
Fix integration test. (#6403)
Diffstat (limited to 'integration-tests')
| -rw-r--r-- | integration-tests/test-helper.ts | 2 |
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; |
