diff options
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/uitest/writer_tests/tdf156165.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/uitest/writer_tests/tdf156165.py b/sw/qa/uitest/writer_tests/tdf156165.py index 69d1928bb8ce..de6a5713a826 100644 --- a/sw/qa/uitest/writer_tests/tdf156165.py +++ b/sw/qa/uitest/writer_tests/tdf156165.py @@ -31,7 +31,7 @@ class tdf156165(UITestCase): # Replace Custom Styles is default to be false self.assertEqual("false", get_state_as_dict(checkbox)["IsChecked"]) - # Replace Custom Styles when applying manully with it disabled, should not change style + # Replace Custom Styles when applying manually with it disabled, should not change style writer_edit.executeAction("SELECT", mkPropertyValues({"END_POS": "0", "START_POS": "12"})) self.xUITest.executeCommand(".uno:AutoFormatApply") sleep(1) @@ -58,7 +58,7 @@ class tdf156165(UITestCase): checkbox.executeAction("CLICK", tuple()) self.assertEqual("true", get_state_as_dict(checkbox)["IsChecked"]) - # Replace Custom Styles when applying manully with it enabled, should change style + # Replace Custom Styles when applying manually with it enabled, should change style writer_edit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "DOWN"})) writer_edit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "DOWN"})) writer_edit.executeAction("SELECT", mkPropertyValues({"END_POS": "0", "START_POS": "12"})) |