diff options
author | Hans Bolinder <[email protected]> | 2017-03-13 16:06:23 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-04-27 10:26:48 +0200 |
commit | ee2dde4f7f8508d58a9e1b16da66e26f99cf1cc0 (patch) | |
tree | bf1bd2ce3ff58073ab84580270aad925b424cd3d /lib/stdlib/test/sofs_SUITE.erl | |
parent | 32c1c7e5de9240eedd421f81f84c5469e6a5d0da (diff) | |
download | otp-ee2dde4f7f8508d58a9e1b16da66e26f99cf1cc0.tar.gz otp-ee2dde4f7f8508d58a9e1b16da66e26f99cf1cc0.tar.bz2 otp-ee2dde4f7f8508d58a9e1b16da66e26f99cf1cc0.zip |
stdlib: Fix a test in sofs_SUITE
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) -> |