summaryrefslogtreecommitdiff
path: root/uitest
diff options
context:
space:
mode:
authorDowwdyJ <joeldowdy12@gmail.com>2023-02-16 04:27:40 +0000
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-02-21 12:11:06 +0000
commitac0e3e11d14d31b66e0f9a08f96d0233ec55951d (patch)
treedd184643626fc6372873bd832f2b799967955519 /uitest
parent00194781efcafa231ac53ba26c84e2df847cf5e7 (diff)
tdf#152850: Fix bad scoping of MathML frac command
Change-Id: I4f5d0290e522fa6f3faccd26f74540abf848629b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147153 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uitest')
-rw-r--r--uitest/math_tests/tdf128610.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/math_tests/tdf128610.py b/uitest/math_tests/tdf128610.py
index 4fdd9c2dbc52..29b7d5ac4564 100644
--- a/uitest/math_tests/tdf128610.py
+++ b/uitest/math_tests/tdf128610.py
@@ -27,6 +27,6 @@ class Tdf128610(UITestCase):
# Without the fix in place, this test would have failed with
# AssertionError: '{ f _ c = frac { 1 } { K _ m } }' != ''
- self.assertEqual("{ f _ c = frac { 1 } { K _ m } }", get_state_as_dict(xEditView)["Text"])
+ self.assertEqual("{ f _ c = { frac { 1 } { K _ m } } }", get_state_as_dict(xEditView)["Text"])
# vim: set shiftwidth=4 softtabstop=4 expandtab: