diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-13 06:48:33 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-11-13 06:49:09 +0800 |
commit | 310d0f15c0db1622d24e8fda855e7dfa3d2fe832 (patch) | |
tree | 0802bfe89ab04308e713fdc3efb66bb0173d34c3 /test/old/testdir/test_lambda.vim | |
parent | 1cc2143710e9eb982c5184ee23eae542333a27e3 (diff) | |
download | rneovim-310d0f15c0db1622d24e8fda855e7dfa3d2fe832.tar.gz rneovim-310d0f15c0db1622d24e8fda855e7dfa3d2fe832.tar.bz2 rneovim-310d0f15c0db1622d24e8fda855e7dfa3d2fe832.zip |
vim-patch:8.2.3096: temp files remain after running tests
Problem: Temp files remain after running tests.
Solution: Delete the right files. (Dominique Pellé, closes vim/vim#8509)
https://github.com/vim/vim/commit/6c72fd51a899e6f0c272b08b9784d3c7a3cede20
Co-authored-by: Dominique Pelle <dominique.pelle@gmail.com>
Diffstat (limited to 'test/old/testdir/test_lambda.vim')
-rw-r--r-- | test/old/testdir/test_lambda.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_lambda.vim b/test/old/testdir/test_lambda.vim index 025eb016a8..810b41b389 100644 --- a/test/old/testdir/test_lambda.vim +++ b/test/old/testdir/test_lambda.vim @@ -329,6 +329,7 @@ func Test_closure_error() let caught_932 = 1 endtry call assert_equal(1, caught_932) + call delete('Xscript') endfunc " vim: shiftwidth=2 sts=2 expandtab |