diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-08 13:46:08 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-06-08 13:46:16 +0200 |
commit | ce1b4f95fe684082cc9fb7e7e018e4f7c04338c4 (patch) | |
tree | 6a3d95c4cc606c78a6b0049c042924ee2871629c | |
parent | faec6fcc6a317d52e3e47b4565dee9bdeb58cac1 (diff) | |
download | rneovim-ce1b4f95fe684082cc9fb7e7e018e4f7c04338c4.tar.gz rneovim-ce1b4f95fe684082cc9fb7e7e018e4f7c04338c4.tar.bz2 rneovim-ce1b4f95fe684082cc9fb7e7e018e4f7c04338c4.zip |
vim-patch:8.1.0430: Xargadd file left behind after running test
Problem: Xargadd file left behind after running test.
Solution: Delete the file. (Dominique Pelle)
https://github.com/vim/vim/commit/d339828b4b0dde662dc9ce65baf1cc098aec402c
-rw-r--r-- | src/nvim/testdir/test_arglist.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_arglist.vim b/src/nvim/testdir/test_arglist.vim index 3a9ffbdbf3..6468819198 100644 --- a/src/nvim/testdir/test_arglist.vim +++ b/src/nvim/testdir/test_arglist.vim @@ -74,6 +74,7 @@ func Test_argadd() call assert_equal(1, len(argv())) call assert_equal('some file', get(argv(), 0, '')) + call delete('Xargadd') %argd new arga |