aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-01-08 10:15:27 +0800
committerGitHub <noreply@github.com>2022-01-07 19:15:27 -0700
commit20122a359022c38269d73153034598019ef38061 (patch)
tree2c88b7e23e3014ac18d8fc236be58686a3c36f60
parentb4fbb9dcf2752d95b9be335d99b0c55efb5f17de (diff)
downloadrneovim-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.vim2
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()