summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@gmail.com>2022-09-04 21:29:46 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-04 21:29:46 +0100
commitb40ad4ff148404b1226bea7051278a1c3c79d4f3 (patch)
tree53a65d5ae33680853fd6d1dd124087bfd18437c6
parente1f3ab73bc7c4b3eee03b673c2983ed7eca6ea80 (diff)
downloadvim-git-b40ad4ff148404b1226bea7051278a1c3c79d4f3.tar.gz
patch 9.0.0381: writefile test leaves files behindv9.0.0381
Problem: Writefile test leaves files behind. Solution: Fix the file names of files to be deleted. (Dominique Pellé, closes #11056)
-rw-r--r--src/testdir/test_writefile.vim4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/test_writefile.vim b/src/testdir/test_writefile.vim
index 4c1311d11..dddc5c953 100644
--- a/src/testdir/test_writefile.vim
+++ b/src/testdir/test_writefile.vim
@@ -75,8 +75,8 @@ func Test_writefile_fails_conversion()
call assert_match('CONVERSION ERROR', output)
let output = execute('write! ++enc=ucs-2 Xwfcfile')
call assert_match('CONVERSION ERROR', output)
- call delete('Xfilz~')
- call delete('Xfily~')
+ call delete('Xwfcfilz~')
+ call delete('Xwfcfily~')
%bw!
call delete('Xwfcfile')
diff --git a/src/version.c b/src/version.c
index d4d3302e6..021694b3c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 381,
+/**/
380,
/**/
379,