Skip to content
Snippets Groups Projects
Commit a5d9a814 authored by Vincent Texier's avatar Vincent Texier
Browse files

[fix] fix random segfault in tests

parent 92159d46
No related branches found
No related tags found
No related merge requests found
Pipeline #18665 waiting for manual action
......@@ -84,7 +84,7 @@ def test_transfer_success(
)
with qtbot.waitSignal(
window.fetch_recipient_balance_from_network_async_qworker.finished, timeout=2000
window.send_tranfer_to_network_async_qworker.finished, timeout=2000
) as _:
# blocker.connect(app.worker.failed) # Can add other signals to blocker
# Test will block at this point until either the "finished" or the
......@@ -163,7 +163,7 @@ def test_transfer_failure(
)
with qtbot.waitSignal(
window.fetch_recipient_balance_from_network_async_qworker.finished, timeout=2000
window.send_tranfer_to_network_async_qworker.finished, timeout=2000
) as _:
# blocker.connect(app.worker.failed) # Can add other signals to blocker
# Test will block at this point until either the "finished" or the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment