summaryrefslogtreecommitdiff
path: root/tests/onionshare_share_mode_persistent_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/onionshare_share_mode_persistent_test.py')
-rw-r--r--tests/onionshare_share_mode_persistent_test.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/onionshare_share_mode_persistent_test.py b/tests/onionshare_share_mode_persistent_test.py
index d0fb5b22..c5d44733 100644
--- a/tests/onionshare_share_mode_persistent_test.py
+++ b/tests/onionshare_share_mode_persistent_test.py
@@ -4,13 +4,14 @@ import unittest
from .TorGuiShareTest import TorGuiShareTest
-class ShareModePersistentSlugTest(unittest.TestCase, TorGuiShareTest):
+
+class ShareModePersistentPasswordTest(unittest.TestCase, TorGuiShareTest):
@classmethod
def setUpClass(cls):
test_settings = {
"use_legacy_v2_onions": True,
"public_mode": False,
- "slug": "",
+ "password": "",
"save_private_key": True,
"close_after_first_download": False,
}
@@ -22,10 +23,11 @@ class ShareModePersistentSlugTest(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_persistent_tests(False, True)
+
if __name__ == "__main__":
unittest.main()