Skip to content

Commit

Permalink
patch 8.2.4422: autochdir test fails on MS-Windows
Browse files Browse the repository at this point in the history
Problem:    Autochdir test fails on MS-Windows.
Solution:   Expecta nother error on MS-Windows.
  • Loading branch information
brammool committed Feb 19, 2022
1 parent 20563e0 commit adbb383
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_autochdir.vim
Expand Up @@ -113,7 +113,7 @@ endfunc
func Test_multibyte()
" using an invalid character should not cause a crash
set wic
call assert_fails('tc űŤŤŤ¦*', 'E344:')
call assert_fails('tc űŤŤŤ¦*', has('win32') ? 'E480:' : 'E344:')
set nowic
endfunc

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4422,
/**/
4421,
/**/
Expand Down

0 comments on commit adbb383

Please sign in to comment.