Ignore exceptions on test handler closing.
This commit is contained in:
parent
6d9c1b1617
commit
7b57750db5
|
@ -1907,7 +1907,10 @@ class HandlerTest(BaseTest):
|
|||
h.handle(r)
|
||||
finally:
|
||||
remover.join()
|
||||
try:
|
||||
h.close()
|
||||
except ValueError:
|
||||
pass
|
||||
if os.path.exists(fn):
|
||||
os.unlink(fn)
|
||||
|
||||
|
|
Loading…
Reference in New Issue