aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tests/libposix/posix005.hs2
-rw-r--r--tests/libposix/posix005.stdout8
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/libposix/posix005.hs b/tests/libposix/posix005.hs
index 2988f4c..91331ff 100644
--- a/tests/libposix/posix005.hs
+++ b/tests/libposix/posix005.hs
@@ -1,4 +1,4 @@
-
+import Data.List (sort)
import System.IO
import System.Posix.Env
diff --git a/tests/libposix/posix005.stdout b/tests/libposix/posix005.stdout
index ace79ee..4f60054 100644
--- a/tests/libposix/posix005.stdout
+++ b/tests/libposix/posix005.stdout
@@ -1,7 +1,7 @@
vt100
[("one","1"),("two","2")]
-[("one","1"),("two","2"),("foo","bar")]
-[("one","1"),("two","2"),("foo","baz")]
-[("one","1"),("two","2"),("foo","baz"),("fu","bar")]
-[("one","1"),("two","2"),("fu","bar")]
+[("foo","bar"),("one","1"),("two","2")]
+[("foo","baz"),("one","1"),("two","2")]
+[("foo","baz"),("fu","bar"),("one","1"),("two","2")]
+[("fu","bar"),("one","1"),("two","2")]
[]