diff options
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/uitest/writer_tests3/save_readonly_with_password.py | 2 | ||||
-rw-r--r-- | sw/qa/uitest/writer_tests7/tdf131936.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/uitest/writer_tests3/save_readonly_with_password.py b/sw/qa/uitest/writer_tests3/save_readonly_with_password.py index a19e97afc6de..0591ad9e0c91 100644 --- a/sw/qa/uitest/writer_tests3/save_readonly_with_password.py +++ b/sw/qa/uitest/writer_tests3/save_readonly_with_password.py @@ -30,7 +30,7 @@ class save_readonly_with_password(UITestCase): xFileName.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"})) xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": xFilePath})) xFileTypeCombo = xSaveDialog.getChild("file_type") - select_by_text(xFileTypeCombo, "Office Open XML Text (Transitional) (.docx)") + select_by_text(xFileTypeCombo, "Word 2010-365 Document (.docx)") xPasswordCheckButton = xSaveDialog.getChild("password") xPasswordCheckButton.executeAction("CLICK", tuple()) xOpen = xSaveDialog.getChild("open") diff --git a/sw/qa/uitest/writer_tests7/tdf131936.py b/sw/qa/uitest/writer_tests7/tdf131936.py index c7403bf2c67e..c7bf9e13cd83 100644 --- a/sw/qa/uitest/writer_tests7/tdf131936.py +++ b/sw/qa/uitest/writer_tests7/tdf131936.py @@ -18,7 +18,7 @@ class tdf131936(UITestCase): with self.ui_test.execute_dialog_through_command(".uno:SaveAs", close_button="cancel") as xDialog: xFileTypeCombo = xDialog.getChild("file_type") state = get_state_as_dict(xFileTypeCombo) - self.assertEqual(state["SelectEntryText"], "Office Open XML Text (Transitional) (.docx)") + self.assertEqual(state["SelectEntryText"], "Word 2010-365 Document (.docx)") # vim: set shiftwidth=4 softtabstop=4 expandtab: |