diff options
author | Khaled Hosny <khaled@libreoffice.org> | 2023-09-18 21:05:05 +0300 |
---|---|---|
committer | خالد حسني <khaled@libreoffice.org> | 2023-09-18 23:05:23 +0200 |
commit | 5416c9183384d46f9eb347871541c6ee1e30c28b (patch) | |
tree | 13b2334d2852ed27f9636a2ec402381187924ed2 /uitest/math_tests | |
parent | ade5e9f7a93b6cbbdc8348062cfed4ebfac1506b (diff) |
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>
Diffstat (limited to 'uitest/math_tests')
-rw-r--r-- | uitest/math_tests/tdf147755.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uitest/math_tests/tdf147755.py b/uitest/math_tests/tdf147755.py index 755efbe6b51d..491974787802 100644 --- a/uitest/math_tests/tdf147755.py +++ b/uitest/math_tests/tdf147755.py @@ -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: |