summaryrefslogtreecommitdiff
path: root/tests/onionshare_share_mode_download_public_mode_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/onionshare_share_mode_download_public_mode_test.py')
-rw-r--r--tests/onionshare_share_mode_download_public_mode_test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/onionshare_share_mode_download_public_mode_test.py b/tests/onionshare_share_mode_download_public_mode_test.py
index 93c23978..72554f8b 100644
--- a/tests/onionshare_share_mode_download_public_mode_test.py
+++ b/tests/onionshare_share_mode_download_public_mode_test.py
@@ -4,12 +4,11 @@ import unittest
from .TorGuiShareTest import TorGuiShareTest
+
class ShareModePublicModeTest(unittest.TestCase, TorGuiShareTest):
@classmethod
def setUpClass(cls):
- test_settings = {
- "public_mode": True,
- }
+ test_settings = {"public_mode": True}
cls.gui = TorGuiShareTest.set_up(test_settings)
@classmethod
@@ -18,10 +17,11 @@ class ShareModePublicModeTest(unittest.TestCase, TorGuiShareTest):
@pytest.mark.gui
@pytest.mark.tor
- @pytest.mark.skipif(pytest.__version__ < '2.9', reason="requires newer pytest")
+ @pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
def test_gui(self):
self.run_all_common_setup_tests()
self.run_all_share_mode_tests(True, False)
+
if __name__ == "__main__":
unittest.main()