diff options
author | Hans Bolinder <[email protected]> | 2013-01-25 10:19:50 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-01-25 10:19:50 +0100 |
commit | cf34f6cbdb135d1c39ca9336e88ca3070ada4b3e (patch) | |
tree | 963fa62da3c86e9f91672e19258bbab223b3e572 /lib/stdlib/test/qlc_SUITE.erl | |
parent | 65d9f5914de50516224f5634b9c672b2d4fdd083 (diff) | |
download | otp-cf34f6cbdb135d1c39ca9336e88ca3070ada4b3e.tar.gz otp-cf34f6cbdb135d1c39ca9336e88ca3070ada4b3e.tar.bz2 otp-cf34f6cbdb135d1c39ca9336e88ca3070ada4b3e.zip |
[stdlib] Fix minor issue with qlc_SUITE
Diffstat (limited to 'lib/stdlib/test/qlc_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/qlc_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/test/qlc_SUITE.erl b/lib/stdlib/test/qlc_SUITE.erl index cac8309bd9..a9ea78a58b 100644 --- a/lib/stdlib/test/qlc_SUITE.erl +++ b/lib/stdlib/test/qlc_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2004-2012. All Rights Reserved. +%% Copyright Ericsson AB 2004-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -6663,7 +6663,7 @@ otp_7714(Config) when is_list(Config) -> {A,I1} <- ets:table(E1), {B,I2} <- ets:table(E2), I1 =:= I2],{join,merge}), - [{a,1},{a,2},{a,3}] = qlc:e(Q), + [{a,1},{a,2},{a,3}] = lists:sort(qlc:e(Q)), ets:delete(E1), ets:delete(E2)">>], ?line run(Config, Ts). @@ -6728,7 +6728,7 @@ otp_6674(Config) when is_list(Config) -> [{join,lookup}]}}], []} = qlc:info(Q, {format,debug}), {0,1,0,0} = join_info(Q), - [{1.0,1},{2,2}] = qlc:e(Q), + [{1.0,1},{2,2}] = lists:sort(qlc:e(Q)), ets:delete(E1), ets:delete(E2)">>, <<"E1 = ets:new(join, [ordered_set]), |