diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-19 15:38:11 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-19 15:55:17 +0000 |
commit | 9c04285057b70f90ca19cb08a49f96369085d882 (patch) | |
tree | 2c8ea34bbc0ba89ec7f70d53c39c0f93122fded6 /src | |
parent | 73cc729dbc156c5882e1db96b35913d4df48c7ba (diff) | |
download | rneovim-9c04285057b70f90ca19cb08a49f96369085d882.tar.gz rneovim-9c04285057b70f90ca19cb08a49f96369085d882.tar.bz2 rneovim-9c04285057b70f90ca19cb08a49f96369085d882.zip |
vim-patch:8.2.4422: autochdir test fails on MS-Windows
Problem: Autochdir test fails on MS-Windows.
Solution: Expecta nother error on MS-Windows.
https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_autochdir.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_autochdir.vim b/src/nvim/testdir/test_autochdir.vim index a012541c0d..53ed4617f7 100644 --- a/src/nvim/testdir/test_autochdir.vim +++ b/src/nvim/testdir/test_autochdir.vim @@ -67,9 +67,9 @@ endfunc func Test_multibyte() " using an invalid character should not cause a crash set wic - " E344 is thrown first, but v8.1.1183 hasn't been ported yet - " call assert_fails('tc *', 'E344:') - call assert_fails('tc *', 'E472:') + " Except on Windows, E472 is also thrown last, but v8.1.1183 isn't ported yet + " call assert_fails('tc *', has('win32') ? 'E480:' : 'E344:') + call assert_fails('tc *', has('win32') ? 'E480:' : 'E472:') set nowic endfunc |