From: Christian Brabandt Date: Sun, 5 Nov 2023 18:17:10 +0000 (+0100) Subject: patch 9.0.2092: tests: failure in test_arabic X-Git-Tag: v9.0.2092^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a94e9879283c55b162cf4e6d9ac7e0b0c35bc97;p=thirdparty%2Fvim.git patch 9.0.2092: tests: failure in test_arabic Problem: tests: failure in test_arabic Solution: adjust the test for the changed arabic keymap Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/test_arabic.vim b/src/testdir/test_arabic.vim index 73b85c4783..d2f28d8183 100644 --- a/src/testdir/test_arabic.vim +++ b/src/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 diff --git a/src/version.c b/src/version.c index 3a72a9cc92..0d46024981 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2092, /**/ 2091, /**/