comparison src/testdir/test_autochdir.vim @ 27792:2d7691a945d1 v8.2.4422

patch 8.2.4422: autochdir test fails on MS-Windows Commit: https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 19 14:49:51 2022 +0000 patch 8.2.4422: autochdir test fails on MS-Windows Problem: Autochdir test fails on MS-Windows. Solution: Expecta nother error on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Feb 2022 16:00:02 +0100
parents bfce04a99561
children d265246e6628
comparison
equal deleted inserted replaced
27791:709ab7cbbde9 27792:2d7691a945d1
111 endfunc 111 endfunc
112 112
113 func Test_multibyte() 113 func Test_multibyte()
114 " using an invalid character should not cause a crash 114 " using an invalid character should not cause a crash
115 set wic 115 set wic
116 call assert_fails('tc *', 'E344:') 116 call assert_fails('tc *', has('win32') ? 'E480:' : 'E344:')
117 set nowic 117 set nowic
118 endfunc 118 endfunc
119 119
120 120
121 " vim: shiftwidth=2 sts=2 expandtab 121 " vim: shiftwidth=2 sts=2 expandtab