Pick->Select rename. Integration tests changes. (#1725)

Pick->Select rename. Integration tests changes.
This commit is contained in:
Andrés N. Robalino
2020-05-07 06:03:43 -05:00
committed by GitHub
parent c3efdf2689
commit 96e5fc05a3
78 changed files with 380 additions and 411 deletions

View File

@ -27,7 +27,7 @@ fn removes_duplicate_rows() {
"#
));
assert_eq!(actual, "3");
assert_eq!(actual.out, "3");
})
}
@ -50,14 +50,14 @@ fn uniq_values() {
cwd: dirs.test(), pipeline(
r#"
open los_tres_caballeros.csv
| pick type
| select type
| uniq
| count
| echo $it
"#
));
assert_eq!(actual, "2");
assert_eq!(actual.out, "2");
})
}
@ -121,7 +121,7 @@ fn nested_json_structures() {
| echo $it
"#
));
assert_eq!(actual, "3");
assert_eq!(actual.out, "3");
})
}
@ -138,5 +138,5 @@ fn uniq_when_keys_out_of_order() {
"#
));
assert_eq!(actual, "1");
assert_eq!(actual.out, "1");
}