diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-08 10:15:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 19:15:27 -0700 |
commit | 20122a359022c38269d73153034598019ef38061 (patch) | |
tree | 2c88b7e23e3014ac18d8fc236be58686a3c36f60 | |
parent | b4fbb9dcf2752d95b9be335d99b0c55efb5f17de (diff) | |
download | rneovim-20122a359022c38269d73153034598019ef38061.tar.gz rneovim-20122a359022c38269d73153034598019ef38061.tar.bz2 rneovim-20122a359022c38269d73153034598019ef38061.zip |
vim-patch:8.2.4033: running filetype tests leaves directory behind (#16984)
Problem: Running filetype tests leaves directory behind.
Solution: Delete the top directory. (closes vim/vim#9483)
https://github.com/vim/vim/commit/a4c96252b12c9ebc0ba563694c064e500d707b06
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index 2adea66008..45a10cc193 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -1042,7 +1042,7 @@ func Test_dep3patch_file() call assert_notequal('dep3patch', &filetype) bwipe! - call delete('debian/patches', 'rf') + call delete('debian', 'rf') endfunc func Test_patch_file() |