From 02a3da111a37aa15bf9bad902bb8efa6c15dc79b Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Fri, 4 Jan 2019 14:55:53 -0800 Subject: [PATCH] plugin: Fix test runner for new TestEZ --- plugin/spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/spec.lua b/plugin/spec.lua index 25e23181..22ed2543 100644 --- a/plugin/spec.lua +++ b/plugin/spec.lua @@ -9,7 +9,7 @@ local habitat, modules = loadEnvironment() -- Load TestEZ and run our tests local TestEZ = habitat:require(modules.TestEZ) -local results = TestEZ.TestBootstrap:run(modules.Rojo, TestEZ.Reporters.TextReporter) +local results = TestEZ.TestBootstrap:run({modules.Rojo}, TestEZ.Reporters.TextReporter) -- Did something go wrong? if results.failureCount > 0 then