tdf#111705: Add Arabic math symbols to the symbols catalogue

Change-Id: Ieabf4d3173a7ce985a9164db8b2de4c8b6d0da36
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157029
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@libreoffice.org>
This commit is contained in:
Khaled Hosny 2023-09-18 21:05:05 +03:00 committed by خالد حسني
parent ade5e9f7a9
commit 5416c91833
2 changed files with 1609 additions and 3 deletions

File diff suppressed because it is too large Load diff

View file

@ -17,7 +17,7 @@ class Tdf147755(UITestCase):
with self.ui_test.execute_dialog_through_command(".uno:SymbolCatalogue", close_button="close") as xDialog:
xSymbolset = xDialog.getChild("symbolset")
self.assertEqual("Greek", get_state_as_dict(xSymbolset)["DisplayText"])
self.assertEqual("Arabic", get_state_as_dict(xSymbolset)["DisplayText"])
xOk = xDialog.getChild("ok")
xOk.executeAction("CLICK", tuple())
@ -26,7 +26,7 @@ class Tdf147755(UITestCase):
xEditView = xMathDoc.getChild("editview")
# Without the fix in place, this test would have failed with
# AssertionError: '%ALPHA' != ''
self.assertEqual("%ALPHA", get_state_as_dict(xEditView)["Text"])
# AssertionError: '%arRay' != ''
self.assertEqual("%arRay", get_state_as_dict(xEditView)["Text"])
# vim: set shiftwidth=4 softtabstop=4 expandtab: