TUN-5000: De-flake logging to dir component test in Windows by increasing to buffer to cope with more logging

This commit is contained in:
Nuno Diegues 2021-08-27 16:24:48 +01:00
parent c7a44009d3
commit 738b4f8d25
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def assert_log_to_terminal(cloudflared):
def assert_log_in_file(file):
with open(file, "r") as f:
log = f.read(1850)
log = f.read(2000)
assert expect_message in log, f"{log} doesn't contain {expect_message}"