diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-16 20:45:56 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-17 12:42:27 -0500 |
commit | abcd982bf0689b31d2d2464a536ea199fe4b50e7 (patch) | |
tree | 521953b1d53167542fc34dd1a42f59eab9106a44 | |
parent | 562877c1350683ea62e815824a8eec1075b6eae7 (diff) | |
download | rneovim-abcd982bf0689b31d2d2464a536ea199fe4b50e7.tar.gz rneovim-abcd982bf0689b31d2d2464a536ea199fe4b50e7.tar.bz2 rneovim-abcd982bf0689b31d2d2464a536ea199fe4b50e7.zip |
vim-patch:8.2.2360: test leaves file behind
Problem: Test leaves file behind.
Solution: Delete the right file. (Dominique Pellé, closes vim/vim#7689)
https://github.com/vim/vim/commit/a3b494d6afa79aedce42fa4ecc7ef0dbae79e37e
-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 fb45dad483..180170fe9a 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -716,7 +716,7 @@ func Test_pp_file() call assert_equal('pascal', &filetype) bwipe! - call delete('Xfile.ts') + call delete('Xfile.pp') filetype off endfunc |