raise timer seuqnce on open settings dialog test (in case that's why it's segfaulting in Travis)

This commit is contained in:
Miguel Jacq 2018-10-17 16:36:58 +11:00
parent b749fc8d12
commit 22e5667842
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -19,7 +19,7 @@ class LocalOpenSettingsDialogTest(unittest.TestCase, GuiShareTest):
self.run_all_common_setup_tests()
self.run_all_share_mode_setup_tests()
# Make sure we can open the settings dialog via the settings button
QtCore.QTimer.singleShot(1000, self.accept_dialog)
QtCore.QTimer.singleShot(4000, self.accept_dialog)
QtTest.QTest.mouseClick(self.gui.settings_button, QtCore.Qt.LeftButton)
if __name__ == "__main__":