From 91a874eb88eff2df9b8fdd64ccf98eed337823cf Mon Sep 17 00:00:00 2001 From: Dominique Pelle Date: Sat, 3 Sep 2022 10:59:32 +0100 Subject: [PATCH] patch 9.0.0365: file name used in test is unusual MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: File name used in test is unusual. Solution: Rename it. (Dominique Pellé, closes #11044) --- src/testdir/test_terminal.vim | 6 +++--- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 238fd865b..81e659ea5 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -642,9 +642,9 @@ func Test_terminal_cwd_failure() " Case 1: Provided directory is not actually a directory. Attempt to make " the file executable as well. call writefile([], 'Xtcfile') - call setfperm('Xftcile', 'rwx------') - call assert_fails("call term_start(&shell, {'cwd': 'Xftcile'})", 'E475:') - call delete('Xftcile') + call setfperm('Xtcfile', 'rwx------') + call assert_fails("call term_start(&shell, {'cwd': 'Xtcfile'})", 'E475:') + call delete('Xtcfile') " Case 2: Directory does not exist. call assert_fails("call term_start(&shell, {'cwd': 'Xdir'})", 'E475:') diff --git a/src/version.c b/src/version.c index a3d8f2c0b..3d9a9c758 100644 --- a/src/version.c +++ b/src/version.c @@ -707,6 +707,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 365, /**/ 364, /**/