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-24 14:04:10 +0200 |
commit | 4e10fe3518737386ae34e25d2102d23aeddd2942 (patch) | |
tree | d9fdcefcd8d829be67200960fc0eabf7749d27ef | |
parent | 11b35bf0b33c13d5b5a25dd4abaa2cd080794d0e (diff) |
Fix: wrong output file specified using single arg
Copy/paste error...
Change-Id: Icfac57e043a5ff51b69fb07156554bca5b8a1350
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 |