diff options
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/controller/lua.d/aft.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.d/controller/lua.d/aft.lua b/conf.d/controller/lua.d/aft.lua index a197219..91b9086 100644 --- a/conf.d/controller/lua.d/aft.lua +++ b/conf.d/controller/lua.d/aft.lua @@ -364,9 +364,9 @@ end function _AFT.assertVerbSkipped(api, verb, args, cb, msg) if(msg) then - lu.skipIf(not _AFT.assertVerb(api, verb, args, cb), "Test is skipped because "..msg) + lu.skip("Test ("..api..", "..verb..", "..args..", "..cb..") is skipped because "..msg) else - lu.skipIf(not _AFT.assertVerb(api, verb, args, cb), "Test is skipped") + lu.skip("Test ("..api..", "..verb..", "..args..", "..cb..") is skipped") end end |