mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
change the test to use the origin column (#1878)
This commit is contained in:
parent
f0fc9e1038
commit
bf212a5a3a
1 changed files with 4 additions and 3 deletions
|
@ -22,16 +22,17 @@ fn takes_rows_of_nu_value_strings_and_pipes_it_to_stdin_of_external() {
|
|||
cwd: dirs.test(), pipeline(
|
||||
r#"
|
||||
open nu_times.csv
|
||||
| get name
|
||||
| get origin
|
||||
| ^echo $it
|
||||
| nu --testbin chop
|
||||
| lines
|
||||
| nth 3
|
||||
| nth 2
|
||||
| echo $it
|
||||
"#
|
||||
));
|
||||
|
||||
assert_eq!(actual.out, "AndKitKat");
|
||||
// chop will remove the last escaped double quote from \"Estados Unidos\"
|
||||
assert_eq!(actual.out, "Ecuado");
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue