summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2018-10-18 17:55:11 +1100
committerMiguel Jacq <mig@mig5.net>2018-10-18 17:55:11 +1100
commite1d0d10019d27ed236a4c840e0b01332612f1b35 (patch)
tree9553903e6025700049b3cfca86ceb3af6360d9b7 /tests
parentecea986f14e19450d8d3c7d720c087c11220e831 (diff)
downloadonionshare-e1d0d10019d27ed236a4c840e0b01332612f1b35.tar.gz
onionshare-e1d0d10019d27ed236a4c840e0b01332612f1b35.zip
Remove problematic test again
Diffstat (limited to 'tests')
-rw-r--r--tests/local_onionshare_open_settings_dialog_test.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/local_onionshare_open_settings_dialog_test.py b/tests/local_onionshare_open_settings_dialog_test.py
deleted file mode 100644
index 61e66be2..00000000
--- a/tests/local_onionshare_open_settings_dialog_test.py
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python3
-import unittest
-from PyQt5 import QtCore, QtTest
-
-from .GuiShareTest import GuiShareTest
-
-class LocalOpenSettingsDialogTest(unittest.TestCase, GuiShareTest):
- @classmethod
- def setUpClass(cls):
- test_settings = {
- }
- cls.gui = GuiShareTest.set_up(test_settings)
-
- @classmethod
- def tearDownClass(cls):
- GuiShareTest.tear_down()
-
- def test_gui(self):
- 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)
- QtTest.QTest.mouseClick(self.gui.settings_button, QtCore.Qt.LeftButton)
-
-if __name__ == "__main__":
- unittest.main()