test: Remove incorrect and unused try-block in assert_debug_log

This commit is contained in:
MarcoFalke
2019-09-04 13:17:22 -04:00
parent 6e431296da
commit fae91a09c4
2 changed files with 19 additions and 19 deletions

View File

@@ -313,9 +313,9 @@ class TestNode():
with open(debug_log, encoding='utf-8') as dl:
dl.seek(0, 2)
prev_size = dl.tell()
try:
yield
finally:
while True:
found = True
with open(debug_log, encoding='utf-8') as dl: