# HG changeset patch # User Bram Moolenaar # Date 1662199206 -7200 # Node ID 0acf2a20c357a2ae352ef0302d3cd14c9d05d414 # Parent de1d42b33f08237b2d5a13029ec2876b7b0d304c patch 9.0.0365: file name used in test is unusual Commit: https://github.com/vim/vim/commit/91a874eb88eff2df9b8fdd64ccf98eed337823cf Author: Dominique Pelle Date: Sat Sep 3 10:59:32 2022 +0100 patch 9.0.0365: file name used in test is unusual Problem: File name used in test is unusual. Solution: Rename it. (Dominique Pell?, closes https://github.com/vim/vim/issues/11044) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -708,6 +708,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 365, +/**/ 364, /**/ 363,