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:
parent
c7a44009d3
commit
738b4f8d25
|
@ -17,7 +17,7 @@ def assert_log_to_terminal(cloudflared):
|
||||||
|
|
||||||
def assert_log_in_file(file):
|
def assert_log_in_file(file):
|
||||||
with open(file, "r") as f:
|
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}"
|
assert expect_message in log, f"{log} doesn't contain {expect_message}"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue