diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-19 15:18:03 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-22 19:12:16 +0200 |
commit | f4eb0fa9e68ecc9eaac0398fbec47e8e9ebc668b (patch) | |
tree | eabae064b2d5799041e9c604f0b4e78d8e5872a7 | |
parent | 002d9182330712c14257ed18c79c33675237c097 (diff) |
Fix: wrong output file specified using single arg
Copy/paste error...
Change-Id: Iac3a96fed518171cd5a6963145296429368782fa
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | conf.d/controller/lua.d/aft.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.d/controller/lua.d/aft.lua b/conf.d/controller/lua.d/aft.lua index d4f18be..449aab4 100644 --- a/conf.d/controller/lua.d/aft.lua +++ b/conf.d/controller/lua.d/aft.lua @@ -665,7 +665,7 @@ function _launch_test(context, args) _AFT.tests_list = {} end elseif type(args.files) == 'string' then - _AFT.setOutputFile(f) + _AFT.setOutputFile(args.files) readOneFile(args.files) process_tests() end |