diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-11-05 19:23:16 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-11-05 21:56:56 +0100 |
commit | 324fad1e88ba38c87db446418a96fd3170b7f392 (patch) | |
tree | e40d8ab712cdddf3510edb81ec05aabab6369103 | |
parent | bbd7ec9e642bfdc5ee5c1c4d827df9c39fbb6d2a (diff) | |
download | rneovim-324fad1e88ba38c87db446418a96fd3170b7f392.tar.gz rneovim-324fad1e88ba38c87db446418a96fd3170b7f392.tar.bz2 rneovim-324fad1e88ba38c87db446418a96fd3170b7f392.zip |
vim-patch:9.0.2092: tests: failure in test_arabic
Problem: tests: failure in test_arabic
Solution: adjust the test for the changed arabic keymap
https://github.com/vim/vim/commit/2a94e9879283c55b162cf4e6d9ac7e0b0c35bc97
Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r-- | test/old/testdir/test_arabic.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/old/testdir/test_arabic.vim b/test/old/testdir/test_arabic.vim index 272937387d..8f150090ed 100644 --- a/test/old/testdir/test_arabic.vim +++ b/test/old/testdir/test_arabic.vim @@ -74,9 +74,9 @@ endfunc func Test_arabic_toggle_keymap() new set arabic - call feedkeys("i12\<C-^>12\<C-^>12", 'tx') - call assert_match("^ *٢١21٢١$", ScreenLines(1, &columns)[0]) - call assert_equal('١٢12١٢', getline('.')) + call feedkeys("i12\<C-^>12\<C-^>12abcd", 'tx') + call assert_match("^ *.*ﺷ212121$", ScreenLines(1, &columns)[0]) + call assert_equal('121212شلاؤي', getline('.')) set arabic& bwipe! endfunc |