Issue #11393: get more information on assertion error (test_faulthandler)

This commit is contained in:
Victor Stinner 2011-03-31 19:07:58 +02:00
parent 7d648a0cec
commit eb50e51a0f
1 changed files with 2 additions and 2 deletions

View File

@ -354,7 +354,7 @@ def func(repeat, cancel, timeout):
faulthandler.cancel_dump_tracebacks_later()
b = time.time()
# Check that sleep() was not interrupted
assert (b -a) >= pause
assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause)
if cancel:
pause = timeout * 1.5
@ -362,7 +362,7 @@ def func(repeat, cancel, timeout):
time.sleep(pause)
b = time.time()
# Check that sleep() was not interrupted
assert (b -a) >= pause
assert (b - a) >= pause, "{{}} < {{}}".format(b - a, pause)
timeout = 0.5
repeat = {repeat}