Module:ScribuntoUnit/sandbox: Difference between revisions

Content deleted Content added
fix variable name
sync
Line 335:
function ScribuntoUnit:new(o)
o = o or {}
meta =setmetatable(o, {__index = self})
setmetatable(o, meta)
o.run = function(frame) return self:run(o, frame) end
return o
Line 358 ⟶ 357:
--
function ScribuntoUnit:runTest(suite, name, test)
local success, details = pcall(test, suite)
if success then