From b40ad4ff148404b1226bea7051278a1c3c79d4f3 Mon Sep 17 00:00:00 2001 From: Dominique Pelle Date: Sun, 4 Sep 2022 21:29:46 +0100 Subject: [PATCH] patch 9.0.0381: writefile test leaves files behind MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Problem: Writefile test leaves files behind. Solution: Fix the file names of files to be deleted. (Dominique Pellé, closes #11056) --- src/testdir/test_writefile.vim | 4 ++-- src/version.c | 2 ++ 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 @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 381, /**/ 380, /**/ -- 2.50.1