diff options
author | Peter Andersson <[email protected]> | 2011-07-14 16:10:31 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-09-23 12:24:54 +0200 |
commit | 8618bb8eab726ab5652b40751bdca928b49eca7f (patch) | |
tree | c22a3121c8ef9153ad6e97518f9325b0db708e2b /lib/common_test | |
parent | 021b0dcb2a3a86ec0e07b0de8dc7cde9be0924ba (diff) | |
download | otp-8618bb8eab726ab5652b40751bdca928b49eca7f.tar.gz otp-8618bb8eab726ab5652b40751bdca928b49eca7f.tar.bz2 otp-8618bb8eab726ab5652b40751bdca928b49eca7f.zip |
Fix incorrect module name arg to FW:end_tc/3
OTP-9379
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/src/ct_run.erl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl index 4bb555bb9e..c3b0348b26 100644 --- a/lib/common_test/src/ct_run.erl +++ b/lib/common_test/src/ct_run.erl @@ -2195,9 +2195,6 @@ get_start_opt(Key, IfExists, IfNotExists, Args) -> exit({user_error,{bad_argument,Key}}) end. -try_get_start_opt(Key, IfExists, Args) -> - try_get_start_opt(Key, IfExists, undefined, Args). - try_get_start_opt(Key, IfExists, IfNotExists, Args) -> case lists:keysearch(Key, 1, Args) of {value,{Key,Val}} when is_function(IfExists) -> |