Commit 7b57750d authored by Vinay Sajip's avatar Vinay Sajip

Ignore exceptions on test handler closing.

parent 6d9c1b16
......@@ -1907,7 +1907,10 @@ class HandlerTest(BaseTest):
h.handle(r)
finally:
remover.join()
h.close()
try:
h.close()
except ValueError:
pass
if os.path.exists(fn):
os.unlink(fn)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment