Skip to content

Commit

Permalink
Fixes linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kushaldas authored and sssoleileraaa committed Mar 23, 2020
1 parent f9a65df commit b33ea58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_download_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ def check_for_sources():
# Let us download the file
qtbot.mouseClick(file_msg.download_button, Qt.LeftButton)
qtbot.wait(5000)
assert file_msg.export_button.isHidden() == False
assert file_msg.export_button.isHidden() is False
assert file_msg.file_name.text() == "hello.txt"
assert file_msg.file_size.text() == "625B"
assert file_msg.file_size.text() == "625B"
4 changes: 2 additions & 2 deletions tests/functional/test_export_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def check_for_sources():
# Let us download the file
qtbot.mouseClick(file_msg.download_button, Qt.LeftButton)
qtbot.wait(5000)
assert file_msg.export_button.isHidden() == False
assert file_msg.export_button.isHidden() is False
assert file_msg.file_name.text() == "hello.txt"
assert file_msg.file_size.text() == "625B"

Expand All @@ -63,7 +63,7 @@ def check_for_export_dialog():
qtbot.mouseClick(export_dialog.continue_button, Qt.LeftButton)

def check_password_form():
assert export_dialog.passphrase_form.isHidden() == False
assert export_dialog.passphrase_form.isHidden() is False

qtbot.waitUntil(check_password_form, timeout=2000)

Expand Down

0 comments on commit b33ea58

Please sign in to comment.