From: Dominique Pelle Date: Sun, 4 Sep 2022 20:29:46 +0000 (+0100) Subject: patch 9.0.0381: writefile test leaves files behind X-Git-Tag: v9.0.0381 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b40ad4ff148404b1226bea7051278a1c3c79d4f3;p=vim patch 9.0.0381: writefile test leaves files behind Problem: Writefile test leaves files behind. Solution: Fix the file names of files to be deleted. (Dominique Pellé, closes #11056) --- 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 @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 381, /**/ 380, /**/