This commit is contained in:
Jonathan Turner 2019-08-09 05:53:28 +12:00
parent bcd9d2d1a6
commit b815768166

View File

@ -149,8 +149,8 @@ fn can_filter_by_unit_size_comparison() {
nu!( nu!(
output, output,
cwd("tests/fixtures/formats"), cwd("tests/fixtures/formats"),
"ls | where size > 1kb | get name | skip 1 | trim | echo $it" "ls | where size > 1kb | sort-by size | get name | skip 1 | trim | echo $it"
); );
assert_eq!(output, "cargo_sample.toml"); assert_eq!(output, "caco3_plastics.csv");
} }