aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/socket_SUITE.erl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-05-02 15:07:41 +0200
committerMicael Karlberg <[email protected]>2019-05-29 18:41:30 +0200
commitd5a78e4fab8e0039f59bfd20368e5c05a19b8439 (patch)
treeeb8a2437733457b4361497df7d0489dc71c51696 /erts/emulator/test/socket_SUITE.erl
parent64c4668a65195283c7dbc24a677f8d3d46ac5513 (diff)
downloadotp-d5a78e4fab8e0039f59bfd20368e5c05a19b8439.tar.gz
otp-d5a78e4fab8e0039f59bfd20368e5c05a19b8439.tar.bz2
otp-d5a78e4fab8e0039f59bfd20368e5c05a19b8439.zip
[esock|test] Fixed async ttest
Updated the ttest test(s) to handle async properly. OTP-15731
Diffstat (limited to 'erts/emulator/test/socket_SUITE.erl')
-rw-r--r--erts/emulator/test/socket_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/socket_SUITE.erl b/erts/emulator/test/socket_SUITE.erl
index 66cbdda9c7..f7250f6725 100644
--- a/erts/emulator/test/socket_SUITE.erl
+++ b/erts/emulator/test/socket_SUITE.erl
@@ -22592,7 +22592,7 @@ which_ttest_runtime_env(false) ->
%% ms: milliseconds
%% s: seconds (default)
%% m: minutes
-which_ttest_runtime_env2([$m, $s | MS]) when (length(MS) > 0) ->
+which_ttest_runtime_env2([$s, $m | MS]) when (length(MS) > 0) ->
convert_time(MS, fun(X) -> X end);
which_ttest_runtime_env2([$m | M]) when (length(M) > 0) ->
convert_time(M, fun(X) -> ?MINS(X) end);