diff --git a/test/old/testdir/test_mksession.vim b/test/old/testdir/test_mksession.vim index 8c9b3f1c22..7eaa59f827 100644 --- a/test/old/testdir/test_mksession.vim +++ b/test/old/testdir/test_mksession.vim @@ -1086,10 +1086,10 @@ endfunc func Test_mkvimrc() let entries = [ \ ['', 'nothing', ''], - \ ['n', 'normal', 'NORMAL'], - \ ['v', 'visual', 'VISUAL'], - \ ['s', 'select', 'SELECT'], - \ ['x', 'visualonly', 'VISUALONLY'], + \ ['n', 'normal', 'NORMAL'], + \ ['v', 'visual', 'VISUAL'], + \ ['s', 'select', 'SELECT'], + \ ['x', 'visualonly', 'VISUALONLY'], \ ['o', 'operator', 'OPERATOR'], \ ['i', 'insert', 'INSERT'], \ ['l', 'lang', 'LANG'], diff --git a/test/old/testdir/test_mksession_utf8.vim b/test/old/testdir/test_mksession_utf8.vim index 36cb38bea7..387d128f6e 100644 --- a/test/old/testdir/test_mksession_utf8.vim +++ b/test/old/testdir/test_mksession_utf8.vim @@ -103,12 +103,19 @@ func Test_mksession_utf8() endfunc func Test_session_multibyte_mappings() - - " some characters readily available on european keyboards + " some characters readily available on european keyboards, + " as well as characters containing 0x80 or 0x9b bytes let entries = [ + \ ['n', 'ç', 'ç'], + \ ['n', 'º', 'º'], + \ ['n', '¡', '¡'], \ ['n', '', ''], \ ['n', '', ''], \ ['n', '', ''], + \ ['n', '…', 'ě'], + \ ['n', 'ě', '…'], + \ ['n', '', ''], + \ ['n', '', ''], \ ] for entry in entries exe entry[0] .. 'map ' .. entry[1] .. ' ' .. entry[2]