Skip to content

Commit 0144a1b

Browse files
committed
No need for CR in SendLine
1 parent a73476d commit 0144a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

expect/console.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ func (c *Console) Send(s string) (int, error) {
217217

218218
// SendLine writes string s to Console's tty with a trailing newline.
219219
func (c *Console) SendLine(s string) (int, error) {
220-
bytes, err := c.Send(fmt.Sprintf("%s\r\n", s))
220+
bytes, err := c.Send(fmt.Sprintf("%s\n", s))
221221

222222
return bytes, err
223223
}

0 commit comments

Comments
 (0)