Skip to content
Snippets Groups Projects
Commit 35d1de53 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Added missing stdout flush in email test output

parent 4712e4a2
No related branches found
No related tags found
No related merge requests found
...@@ -158,6 +158,7 @@ def check_send(sender: str) -> tuple: ...@@ -158,6 +158,7 @@ def check_send(sender: str) -> tuple:
# timeout # timeout
timed_out = waited >= timeout timed_out = waited >= timeout
sys.stdout.write("\n") sys.stdout.write("\n")
sys.stdout.flush()
# check if the sending has timed out # check if the sending has timed out
if timed_out: if timed_out:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment