diff options
author | Peter Andersson <[email protected]> | 2011-09-27 01:47:41 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-09-27 14:06:12 +0200 |
commit | 3c6e2ebefc49b08532e532ef33b6ae0db4b4a981 (patch) | |
tree | 238df072ed27c8846b9056fa7d0b7dfef781d0a3 | |
parent | 26550631bf825d738bd8c20c9fdb600e9867d81f (diff) | |
download | otp-3c6e2ebefc49b08532e532ef33b6ae0db4b4a981.tar.gz otp-3c6e2ebefc49b08532e532ef33b6ae0db4b4a981.tar.bz2 otp-3c6e2ebefc49b08532e532ef33b6ae0db4b4a981.zip |
Fix invalid call to undefined function
OTP-9585
-rw-r--r-- | lib/common_test/src/ct_run.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl index 4ec3ac589d..26ca4f3cb4 100644 --- a/lib/common_test/src/ct_run.erl +++ b/lib/common_test/src/ct_run.erl @@ -509,7 +509,7 @@ script_start4(#opts{label = Label, profile = Profile, case install(InstallOpts) of ok -> ct_util:start(interactive, LogDir), - ct_util:set_testdata(logopts, LogOpts), + ct_util:set_testdata({logopts, LogOpts}), log_ts_names(Specs), io:nl(), ok; |