aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/golite.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/golite.go b/tests/golite.go
index 606dc2b..0747bce 100644
--- a/tests/golite.go
+++ b/tests/golite.go
@@ -3961,15 +3961,10 @@ func MainTest() {
{ "TestSuite", TestSuite }, // FIXME: too slow
}
+ deps := testdeps.TestDeps{}
benchmarks := []testing.InternalBenchmark {}
fuzzTargets := []testing.InternalFuzzTarget{}
examples := []testing.InternalExample {}
- m := testing.MainStart(
- testdeps.TestDeps{},
- tests,
- benchmarks,
- fuzzTargets,
- examples,
- )
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
os.Exit(m.Run())
}