diff options
Diffstat (limited to 'test/benchmark/bench_regexp_spec.lua')
-rw-r--r-- | test/benchmark/bench_regexp_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/benchmark/bench_regexp_spec.lua b/test/benchmark/bench_regexp_spec.lua index 4a7c50557b..9c0b86b6b5 100644 --- a/test/benchmark/bench_regexp_spec.lua +++ b/test/benchmark/bench_regexp_spec.lua @@ -1,8 +1,8 @@ -- Test for benchmarking the RE engine. -local helpers = require('test.functional.helpers')(after_each) -local insert, source = helpers.insert, helpers.source -local clear, command = helpers.clear, helpers.command +local t = require('test.functional.testutil')(after_each) +local insert, source = t.insert, t.source +local clear, command = t.clear, t.command -- Temporary file for gathering benchmarking results for each regexp engine. local result_file = 'benchmark.out' |