summaryrefslogtreecommitdiff
path: root/lib/reltool/test
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-04-20 10:19:21 +0200
committerLukas Larsson <lukas@erlang.org>2020-04-22 17:42:06 +0200
commit017bd36a045cb2d1db1dc13f5b129dc1b19b6428 (patch)
tree96329831b4abdd15353874dc6dfc729789bffa20 /lib/reltool/test
parent9f17d424ada5353db1e5b31296484d95679f8ca8 (diff)
downloaderlang-017bd36a045cb2d1db1dc13f5b129dc1b19b6428.tar.gz
reltool: Fix sorting of erl_libs
The internal state of reltool does not sort the erl_libs so neither should the test functions.
Diffstat (limited to 'lib/reltool/test')
-rw-r--r--lib/reltool/test/reltool_test_lib.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reltool/test/reltool_test_lib.erl b/lib/reltool/test/reltool_test_lib.erl
index 033d952d0a..88e5244b8b 100644
--- a/lib/reltool/test/reltool_test_lib.erl
+++ b/lib/reltool/test/reltool_test_lib.erl
@@ -238,7 +238,7 @@ wait_for_close() ->
end.
erl_libs() ->
- lists:sort([filename:absname(P) || P<-reltool_utils:erl_libs()]).
+ [filename:absname(P) || P<-reltool_utils:erl_libs()].
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% A small test server, which can be run standalone in a shell