change the test to use the origin column (#1878)

This commit is contained in:
Ryan Blecher 2020-05-25 18:50:54 -04:00 committed by GitHub
parent f0fc9e1038
commit bf212a5a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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");
})
}