aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl/test
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2017-11-15 16:16:50 +0100
committerGitHub <[email protected]>2017-11-15 16:16:50 +0100
commit41e6eaa01031284c6d0f89eee031593f77953c1d (patch)
tree0205f54e2cb29420e07fcfcc50211c898483a310 /lib/sasl/test
parent355e7855919e2a82856b27d45cb692a087da0385 (diff)
parenta03895dcfb558dbb27a8a15afbb199f17231184b (diff)
downloadotp-41e6eaa01031284c6d0f89eee031593f77953c1d.tar.gz
otp-41e6eaa01031284c6d0f89eee031593f77953c1d.tar.bz2
otp-41e6eaa01031284c6d0f89eee031593f77953c1d.zip
Merge pull request #1602 from sirihansen/siri/supervisor/store-children-in-map
Refactor supervisor, and store children in a map instead of a list OTP-14586
Diffstat (limited to 'lib/sasl/test')
-rw-r--r--lib/sasl/test/release_handler_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sasl/test/release_handler_SUITE.erl b/lib/sasl/test/release_handler_SUITE.erl
index 63b48e7a4e..4935782cf2 100644
--- a/lib/sasl/test/release_handler_SUITE.erl
+++ b/lib/sasl/test/release_handler_SUITE.erl
@@ -1384,9 +1384,9 @@ upgrade_supervisor(Conf) when is_list(Conf) ->
%% Check that the restart strategy and child spec is updated
{status, _, {module, _}, [_, _, _, _, [_,_,{data,[{"State",State}]}|_]]} =
rpc:call(Node,sys,get_status,[a_sup]),
- {state,_,RestartStrategy,[Child],_,_,_,_,_,_,_} = State,
+ {state,_,RestartStrategy,{[a],Db},_,_,_,_,_,_,_} = State,
one_for_all = RestartStrategy, % changed from one_for_one
- {child,_,_,_,_,brutal_kill,_,_} = Child, % changed from timeout 2000
+ {child,_,_,_,_,brutal_kill,_,_} = maps:get(a,Db), % changed from timeout 2000
ok.