diff options
author | Michael Ennen <mike.ennen@gmail.com> | 2016-04-19 16:24:03 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-22 15:55:38 -0400 |
commit | e70cae426cb3ad6b755d76b4aa523f806bacd89b (patch) | |
tree | dd1566631588e6a236b65573547546d68455fc81 /test | |
parent | 39c015bd114aa8e7a2415ba4a610e238de715474 (diff) | |
download | rneovim-e70cae426cb3ad6b755d76b4aa523f806bacd89b.tar.gz rneovim-e70cae426cb3ad6b755d76b4aa523f806bacd89b.tar.bz2 rneovim-e70cae426cb3ad6b755d76b4aa523f806bacd89b.zip |
test: Remove references to tiny.vim/small.vim/mbyte.vim
Vim creates these scripts in test1 depending on what build features
are enabled so that tests that use these features are skiped if
necessary. Because Neovim only has one type of build (and the features
+eval, +windows, and +multi-byte are enabled in this build) they are
not necessary.
Diffstat (limited to 'test')
-rw-r--r-- | test/benchmark/bench_re_freeze_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/benchmark/bench_re_freeze_spec.lua b/test/benchmark/bench_re_freeze_spec.lua index d40d9f9ece..a194b5f44c 100644 --- a/test/benchmark/bench_re_freeze_spec.lua +++ b/test/benchmark/bench_re_freeze_spec.lua @@ -25,8 +25,8 @@ local measure_script = [[ endfunc]] describe('regexp search', function() - -- The test cases rely on a small Vim script, which we source here, and also - -- on a temporary result file, which we prepare and write to disk. + -- The test cases rely on a temporary result file, which we prepare and write + -- to disk. setup(function() clear() source(measure_script) |