summaryrefslogtreecommitdiff
path: root/uitest/math_tests/start.py
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/math_tests/start.py')
-rw-r--r--uitest/math_tests/start.py4
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: