plugin: Fix test runner for new TestEZ

This commit is contained in:
Lucien Greathouse
2019-01-04 14:55:53 -08:00
parent 5c2bf65eaa
commit 02a3da111a

View File

@@ -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