commit 324fad1e88ba38c87db446418a96fd3170b7f392
parent bbd7ec9e642bfdc5ee5c1c4d827df9c39fbb6d2a
Author: Christian Clason <c.clason@uni-graz.at>
Date: Sun, 5 Nov 2023 19:23:16 +0100
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>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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