summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2018-10-17 16:36:58 +1100
committerMiguel Jacq <mig@mig5.net>2018-10-17 16:36:58 +1100
commit22e566784238e5da76a3a311a097a00dc482457b (patch)
tree4e160c96c2510c236c6ccfab15cbd9f73f0c209b /tests
parentb749fc8d12c18aba91adcaf62154a63d7ebd6af3 (diff)
downloadonionshare-22e566784238e5da76a3a311a097a00dc482457b.tar.gz
onionshare-22e566784238e5da76a3a311a097a00dc482457b.zip
raise timer seuqnce on open settings dialog test (in case that's why it's segfaulting in Travis)
Diffstat (limited to 'tests')
-rw-r--r--tests/local_onionshare_open_settings_dialog_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/local_onionshare_open_settings_dialog_test.py b/tests/local_onionshare_open_settings_dialog_test.py
index 61e66be2..af20c73f 100644
--- a/tests/local_onionshare_open_settings_dialog_test.py
+++ b/tests/local_onionshare_open_settings_dialog_test.py
@@ -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__":