diff options
author | Hans Nilsson <[email protected]> | 2016-12-15 18:32:15 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-12-15 18:32:15 +0100 |
commit | a9b1aef133bfaac885ae2f1a83d23d1079758535 (patch) | |
tree | 546a85a1d4379a53fb9f340251d46c7e9fca4d8f /lib/ssh/test/ssh_algorithms_SUITE.erl | |
parent | 248aa0f8a3356e503e6887a0365d66a9f4892528 (diff) | |
parent | 6b28c962113429b212020336e145ccd78ca699fd (diff) | |
download | otp-a9b1aef133bfaac885ae2f1a83d23d1079758535.tar.gz otp-a9b1aef133bfaac885ae2f1a83d23d1079758535.tar.bz2 otp-a9b1aef133bfaac885ae2f1a83d23d1079758535.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/ssh/test/ssh_algorithms_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index 8b2db0e1a8..14605ee44f 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -198,7 +198,7 @@ try_exec_simple_group(Group, Config) -> %%-------------------------------------------------------------------- %% Testing all default groups -simple_exec_groups() -> [{timetrap,{minutes,5}}]. +simple_exec_groups() -> [{timetrap,{minutes,8}}]. simple_exec_groups(Config) -> Sizes = interpolate( public_key:dh_gex_group_sizes() ), @@ -206,10 +206,8 @@ simple_exec_groups(Config) -> fun(Sz) -> ct:log("Try size ~p",[Sz]), ct:comment(Sz), - case simple_exec_group(Sz, Config) of - expected -> ct:log("Size ~p ok",[Sz]); - _ -> ct:log("Size ~p not ok",[Sz]) - end + simple_exec_group(Sz, Config), + ct:log("Size ~p ok",[Sz]) end, Sizes), ct:comment("~p",[lists:map(fun({_,I,_}) -> I; (I) -> I |