diff options
Diffstat (limited to 'src/parse/test.rs')
| -rw-r--r-- | src/parse/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/test.rs b/src/parse/test.rs index 91a3fda..dd6fbca 100644 --- a/src/parse/test.rs +++ b/src/parse/test.rs @@ -338,7 +338,7 @@ fn backslash_eof() { #[test] fn backslash_joins_lines() { parse_test!( - parse(b"echo \\\nhello"), - pipes([cmd([estr(b"echo"), estr(b"hello")]),]) + parse(b"echo foo\\\nbar"), + pipes([cmd([estr(b"echo"), estr(b"foobar")]),]) ) } |
