aboutsummaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2021-05-02 14:34:09 -0700
committerMicah Lee <micah@micahflee.com>2021-05-02 14:34:09 -0700
commitce7f67652733ec7f9fd5f4966a7f7a10bfdedef2 (patch)
tree29fa689009311172e040981282d621fbe4a2359c /desktop
parent8b9d9fcf46bb462ed2a23ead818117ea69aeeee4 (diff)
downloadonionshare-ce7f67652733ec7f9fd5f4966a7f7a10bfdedef2.tar.gz
onionshare-ce7f67652733ec7f9fd5f4966a7f7a10bfdedef2.zip
Fix GUI tests
Diffstat (limited to 'desktop')
-rw-r--r--desktop/tests/test_gui_receive.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/desktop/tests/test_gui_receive.py b/desktop/tests/test_gui_receive.py
index 848b2f11..7d544009 100644
--- a/desktop/tests/test_gui_receive.py
+++ b/desktop/tests/test_gui_receive.py
@@ -54,9 +54,9 @@ class TestReceive(GuiBaseTest):
for _ in range(10):
date_dir = now.strftime("%Y-%m-%d")
if identical_files_at_once:
- time_dir = now.strftime("%H.%M.%S-1")
+ time_dir = now.strftime("%H%M%S-1")
else:
- time_dir = now.strftime("%H.%M.%S")
+ time_dir = now.strftime("%H%M%S")
receive_mode_dir = os.path.join(
tab.settings.get("receive", "data_dir"), date_dir, time_dir
)
@@ -115,7 +115,6 @@ class TestReceive(GuiBaseTest):
self.have_copy_url_button(tab)
self.have_show_qr_code_button(tab)
self.server_status_indicator_says_started(tab)
- self.web_page(tab, "Select the files you want to send, then click")
def run_all_receive_mode_tests(self, tab):
"""Upload files in receive mode and stop the share"""