diff options
author | Hans Bolinder <[email protected]> | 2017-04-28 09:26:52 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-04-28 09:26:52 +0200 |
commit | e984e201381e1c70679b628022a1218d5090ce55 (patch) | |
tree | 231a3bf46f34981f4dd44951169a6ac95c83ab53 /lib/stdlib/test/sofs_SUITE.erl | |
parent | b674f7b827dec8fd220b858fba1a7d093594cc0b (diff) | |
parent | ee2dde4f7f8508d58a9e1b16da66e26f99cf1cc0 (diff) | |
download | otp-e984e201381e1c70679b628022a1218d5090ce55.tar.gz otp-e984e201381e1c70679b628022a1218d5090ce55.tar.bz2 otp-e984e201381e1c70679b628022a1218d5090ce55.zip |
Merge branch 'hasse/stdlib/fix_qlc_bug/OTP-14296'
* hasse/stdlib/fix_qlc_bug/OTP-14296:
stdlib: Fix a test in sofs_SUITE
debugger: Improve handling of pids, ports, and refs
stdlib: Improve handling of pids, ports, and refs in qlc
stdlib: Improve the Erlang shell's handling of references
Diffstat (limited to 'lib/stdlib/test/sofs_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/sofs_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/sofs_SUITE.erl b/lib/stdlib/test/sofs_SUITE.erl index f67bf16f0f..39e56c6df6 100644 --- a/lib/stdlib/test/sofs_SUITE.erl +++ b/lib/stdlib/test/sofs_SUITE.erl @@ -1783,7 +1783,7 @@ multiple_relative_product(Conf) when is_list(Conf) -> ok. digraph(Conf) when is_list(Conf) -> - T0 = ets:all(), + T0 = lists:sort(ets:all()), E = empty_set(), R = relation([{a,b},{b,c},{c,d},{d,a}]), F = relation_to_family(R), @@ -1833,7 +1833,7 @@ digraph(Conf) when is_list(Conf) -> true -> ok end, - true = T0 == ets:all(), + true = T0 == lists:sort(ets:all()), ok. digraph_fail(ExitReason, Fail) -> |