diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2024-08-22 10:57:05 +0200 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2024-08-26 10:38:28 +0200 |
commit | cd2eba5c698081355d51c491398119f38068bfb2 (patch) | |
tree | 12a8849c057e6e6a092a0a03fefc8a376482378e /uitest/math_tests/start.py | |
parent | 1fefb68a916918620f0bad7c879ff805c416bec4 (diff) |
Related tdf#160226 - Math inline editing Off by default
Introduced per
I63672c054d1ead269863079e7f9c118a44b3ba19
Ib2ca942c537e466f6ff100be7f95adaead99f1d5
Change-Id: Iff2bd250c004e57800c84287483965ec3ae49187
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172241
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Tested-by: Jenkins
Diffstat (limited to 'uitest/math_tests/start.py')
-rw-r--r-- | uitest/math_tests/start.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py index 7504387a16f7..a2e4ba1d708c 100644 --- a/uitest/math_tests/start.py +++ b/uitest/math_tests/start.py @@ -57,11 +57,11 @@ class SimpleMathTest(UITestCase): xElement.executeAction("DOUBLECLICK", tuple()) xEditView = xMathDoc.getChild("editview") - xEditView.executeAction("TYPE", mkPropertyValues({"KEYCODE":"F4"})) + type_text(xEditView, "1") xEditView.executeAction("TYPE", mkPropertyValues({"KEYCODE":"F4"})) type_text(xEditView, "2") - self.assertEqual("{ 1 <> 2 }", get_state_as_dict(xEditView)["Text"]) + self.assertEqual("1 <> 2 ", get_state_as_dict(xEditView)["Text"]) # vim: set shiftwidth=4 softtabstop=4 expandtab: |