Change code doc from 'Delete All' to 'Clear All' and remove whitespace in test

This commit is contained in:
Miguel Jacq 2020-05-27 12:59:13 +10:00
parent 1632a00a91
commit 327747fa3f
No known key found for this signature in database
GPG key ID: EEA4341C6D97A0B6
3 changed files with 2 additions and 3 deletions

View file

@ -396,7 +396,7 @@ class ShareMode(Mode):
def clear_all(self): def clear_all(self):
""" """
Delete All button clicked Clear All button clicked
""" """
self.file_selection.file_list.clear() self.file_selection.file_list.clear()
self.file_selection.file_list.files_updated.emit() self.file_selection.file_list.files_updated.emit()

View file

@ -301,7 +301,7 @@ class WebsiteMode(Mode):
def clear_all(self): def clear_all(self):
""" """
Delete All button clicked Clear All button clicked
""" """
self.file_selection.file_list.clear() self.file_selection.file_list.clear()
self.file_selection.file_list.files_updated.emit() self.file_selection.file_list.files_updated.emit()

View file

@ -412,7 +412,6 @@ class TestShare(GuiBaseTest):
self.close_all_tabs() self.close_all_tabs()
@pytest.mark.gui @pytest.mark.gui
def test_public_mode(self): def test_public_mode(self):
""" """