diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-23 00:50:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-23 00:50:15 +0200 |
commit | 7a39dd7f00239059ce34660611589b26126a550c (patch) | |
tree | 6b8b1b7c7218f0f213804cd84c0859d9e0f23b87 /src/testdir/test_timers.vim | |
parent | c662ec9978e9a381680ffe53d05da0e10bb8d1a0 (diff) | |
download | vim-git-7a39dd7f00239059ce34660611589b26126a550c.tar.gz |
patch 8.1.1581: shared functions for testing are disorganisedv8.1.1581
Problem: Shared functions for testing are disorganised.
Solution: Group finctions in script files. (Ozaki Kiichi, closes #4573)
Diffstat (limited to 'src/testdir/test_timers.vim')
-rw-r--r-- | src/testdir/test_timers.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_timers.vim b/src/testdir/test_timers.vim index e67da134b..906613497 100644 --- a/src/testdir/test_timers.vim +++ b/src/testdir/test_timers.vim @@ -4,7 +4,7 @@ source check.vim CheckFeature timers source shared.vim -source screendump.vim +source term_util.vim func MyHandler(timer) let g:val += 1 |