From a3b494d6afa79aedce42fa4ecc7ef0dbae79e37e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 16 Jan 2021 13:43:31 +0100 Subject: patch 8.2.2360: test leaves file behind MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Test leaves file behind. Solution: Delete the right file. (Dominique Pellé, closes #7689) --- src/testdir/test_filetype.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 3d93ad159..b05c152dc 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -757,7 +757,7 @@ func Test_pp_file() call assert_equal('pascal', &filetype) bwipe! - call delete('Xfile.ts') + call delete('Xfile.pp') filetype off endfunc diff --git a/src/version.c b/src/version.c index 51f8f0b47..aa86cab49 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2360, /**/ 2359, /**/ -- cgit v1.2.1