diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-11-20 22:46:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-20 22:46:34 -0500 |
| commit | 120a88163078e61b272e9629138642bc5df80e4a (patch) | |
| tree | 0688ce1bcf39ab6836a49e4a3df4f6fa11214075 /src/nvim/testdir/test_quickfix.vim | |
| parent | 2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc (diff) | |
| parent | 2c431943d663ee9bbd0434a2b34180bcf6a058e9 (diff) | |
| download | rneovim-120a88163078e61b272e9629138642bc5df80e4a.tar.gz rneovim-120a88163078e61b272e9629138642bc5df80e4a.tar.bz2 rneovim-120a88163078e61b272e9629138642bc5df80e4a.zip | |
Merge pull request #14540 from Shougo/fix_vim8.1.1378
[RFC] Improve tests
Diffstat (limited to 'src/nvim/testdir/test_quickfix.vim')
| -rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index 8c6ce63ade..b38a59e98f 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -3653,6 +3653,9 @@ func Xqftick_tests(cchar) \ {'filename' : 'F7', 'lnum' : 11, 'text' : 'L11'}], 'r') call assert_equal(2, g:Xgetlist({'changedtick' : 0}).changedtick) + if isdirectory("Xone") + call delete("Xone", 'rf') + endif call writefile(["F8:80:L80", "F8:81:L81"], "Xone") Xfile Xone call assert_equal(1, g:Xgetlist({'changedtick' : 0}).changedtick) |