swept clean quotes

This commit is contained in:
Andrés N. Robalino
2019-08-27 06:14:19 -05:00
parent b502954558
commit 162c8b4274
8 changed files with 11 additions and 13 deletions

View File

@@ -7,7 +7,7 @@ use helpers as h;
fn lines() {
nu!(output,
cwd("tests/fixtures/formats"),
"open cargo_sample.toml --raw | lines | skip-while $it != \"[dependencies]\" | skip 1 | first 1 | split-column \"=\" | get Column1 | trim | echo $it"
r#"open cargo_sample.toml --raw | lines | skip-while $it != "[dependencies]" | skip 1 | first 1 | split-column "=" | get Column1 | trim | echo $it"#
);
assert_eq!(output, "rustyline");