Skip to content

Commit

Permalink
Trim input to writeInputLine
Browse files Browse the repository at this point in the history
  • Loading branch information
kraenhansen committed Oct 7, 2024
1 parent 9191f6f commit cf096eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e-tests/test/test-shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export class TestShell {
}

writeInputLine(chars: string): void {
this.writeInput(`${chars}\n`);
this.writeInput(`${chars.trim()}\n`);
}

async executeLine(line: string): Promise<string> {
Expand Down

0 comments on commit cf096eb

Please sign in to comment.