aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parse/test.rs4
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")]),])
)
}