test: Format predicate source as multiline on error

pull/764/head
MarcoFalke 6 years ago
parent fa1dce7329
commit fa3872e7b4
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

@ -216,7 +216,7 @@ def wait_until(predicate, *, attempts=float('inf'), timeout=float('inf'), lock=N
time.sleep(0.05)
# Print the cause of the timeout
predicate_source = inspect.getsourcelines(predicate)
predicate_source = "''''\n" + inspect.getsource(predicate) + "'''"
logger.error("wait_until() failed. Predicate: {}".format(predicate_source))
if attempt >= attempts:
raise AssertionError("Predicate {} not true after {} attempts".format(predicate_source, attempts))

Loading…
Cancel
Save