diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-11-17 13:58:08 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-11-17 21:52:48 +0100 |
commit | 96e9dad60bf82153bf678a15f93fb77c8cafcf43 (patch) | |
tree | 3f9b00a9179f6e389304efdc9d4566713d529993 /sw/qa | |
parent | 69cc5b565d38eb4b50be3b6540138bb1ec880ea4 (diff) |
uitest: sw: I don't think this time.sleep is needed
Change-Id: Ic3f5ebb8e41a7f392385e01c9d7f0f89810ca194
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125399
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/uitest/writer_tests7/tdf131936.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sw/qa/uitest/writer_tests7/tdf131936.py b/sw/qa/uitest/writer_tests7/tdf131936.py index 773386b658ff..56247711dbfe 100644 --- a/sw/qa/uitest/writer_tests7/tdf131936.py +++ b/sw/qa/uitest/writer_tests7/tdf131936.py @@ -4,8 +4,6 @@ from uitest.framework import UITestCase from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file -from uitest.config import DEFAULT_SLEEP -import time class tdf131936(UITestCase): @@ -13,7 +11,6 @@ class tdf131936(UITestCase): with self.ui_test.load_file(get_url_for_data_file("tdf131936.docx")): with self.ui_test.execute_dialog_through_command(".uno:SaveAs", close_button="cancel") as xDialog: - time.sleep(DEFAULT_SLEEP) xFileTypeCombo = xDialog.getChild("file_type") state = get_state_as_dict(xFileTypeCombo) self.assertEqual(state["SelectEntryText"], "Office Open XML Text (Transitional) (.docx)") |