diff options
author | EuAndreh <eu@euandre.org> | 2024-10-02 06:54:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-02 06:54:48 -0300 |
commit | 7811686236e32467e7665e5403b758ac63715acc (patch) | |
tree | d1b3a2a3cfcc5c53c223145f79fa77e8c23bd45f /tests | |
parent | Turn example files into tests under tests/functional/ (diff) | |
download | golite-7811686236e32467e7665e5403b758ac63715acc.tar.gz golite-7811686236e32467e7665e5403b758ac63715acc.tar.xz |
tests/golite.go: Add explicit "deps" variable
Diffstat (limited to 'tests')
-rw-r--r-- | tests/golite.go | 9 |
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()) } |