summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2018-10-17 16:45:52 +1100
committerMiguel Jacq <mig@mig5.net>2018-10-17 16:45:52 +1100
commit497cd4fbdd06ea4b3c4ead289933aa83a168e0c7 (patch)
tree6bf509ad55fa9d920ec6f1d79b9376f2fbc63690 /tests
parent22e566784238e5da76a3a311a097a00dc482457b (diff)
downloadonionshare-497cd4fbdd06ea4b3c4ead289933aa83a168e0c7.tar.gz
onionshare-497cd4fbdd06ea4b3c4ead289933aa83a168e0c7.zip
Revert "raise timer seuqnce on open settings dialog test (in case that's why it's segfaulting in Travis)"
This reverts commit 22e566784238e5da76a3a311a097a00dc482457b.
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 af20c73f..61e66be2 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(4000, self.accept_dialog)
+ QtCore.QTimer.singleShot(1000, self.accept_dialog)
QtTest.QTest.mouseClick(self.gui.settings_button, QtCore.Qt.LeftButton)
if __name__ == "__main__":