diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-16 21:20:45 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-16 21:21:58 -0400 |
commit | 0455af00e656b0f18854211e4547221178d64af8 (patch) | |
tree | b561d032687e448798f6526266b344cf65317972 /src | |
parent | 4aa3473b8800df64aeec25012976e603ac66c9f6 (diff) | |
download | rneovim-0455af00e656b0f18854211e4547221178d64af8.tar.gz rneovim-0455af00e656b0f18854211e4547221178d64af8.tar.bz2 rneovim-0455af00e656b0f18854211e4547221178d64af8.zip |
vim-patch:8.1.1858: test for multi-byte mapping fails on some systems
Problem: Test for multi-byte mapping fails on some systems.
Solution: Test in another way.
https://github.com/vim/vim/commit/2f710afe7f166973c879bf7424678ba84368c1bb
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_mapping.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_mapping.vim b/src/nvim/testdir/test_mapping.vim index 43bab8ae5c..5e080fc55e 100644 --- a/src/nvim/testdir/test_mapping.vim +++ b/src/nvim/testdir/test_mapping.vim @@ -231,7 +231,7 @@ endfunc func Test_map_meta_multibyte() imap <M-á> foo - call assert_equal('foo', maparg("\<M-á>", 'i')) + call assert_match('i <M-á>\s*foo', execute('imap')) iunmap <M-á> endfunc |