From 45d514a4cbd15f51e73aab10c95f77ecc5499b10 Mon Sep 17 00:00:00 2001 From: Issac Trotts Date: Sat, 24 Aug 2019 17:21:09 -0700 Subject: [PATCH] sort to get test to pass on linux --- tests/filters_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/filters_test.rs b/tests/filters_test.rs index 08aabde344..5253dea33d 100644 --- a/tests/filters_test.rs +++ b/tests/filters_test.rs @@ -95,7 +95,7 @@ fn can_get_last() { nu!( output, cwd("tests/fixtures/formats"), - "ls | last 1 | get name | trim | echo $it" + "ls | sort-by name | last 1 | get name | trim | echo $it" ); assert_eq!(output, "utf16.ini");