fixed some more tests (#4607)

This commit is contained in:
Darren Schroeder
2022-02-22 10:32:29 -06:00
committed by GitHub
parent 25712760ba
commit f507613b38
11 changed files with 18 additions and 60 deletions

View File

@ -106,8 +106,6 @@ fn column_names_with_spaces() {
assert_eq!(actual.out, "Robalino Jnth");
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn ignores_duplicate_columns_selected() {
let actual = nu!(cwd: ".", pipeline(
@ -119,7 +117,7 @@ fn ignores_duplicate_columns_selected() {
[Andrés Jnth]
]
| select "first name" "last name" "first name"
| get
| columns
| str collect " "
"#
));