From 324fad1e88ba38c87db446418a96fd3170b7f392 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sun, 5 Nov 2023 19:23:16 +0100 Subject: [PATCH] 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 --- test/old/testdir/test_arabic.vim | 6 +++--- 1 file 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\12\12", 'tx') - call assert_match("^ *٢١21٢١$", ScreenLines(1, &columns)[0]) - call assert_equal('١٢12١٢', getline('.')) + call feedkeys("i12\12\12abcd", 'tx') + call assert_match("^ *.*ﺷ212121$", ScreenLines(1, &columns)[0]) + call assert_equal('121212شلاؤي', getline('.')) set arabic& bwipe! endfunc