mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #27493: Fix test_path_objects under Windows
This commit is contained in:
parent
bd8b443742
commit
b3bb436b86
1 changed files with 1 additions and 1 deletions
|
@ -596,8 +596,8 @@ class HandlerTest(BaseTest):
|
|||
for cls, args in cases:
|
||||
h = cls(*args)
|
||||
self.assertTrue(os.path.exists(fn))
|
||||
os.unlink(fn)
|
||||
h.close()
|
||||
os.unlink(fn)
|
||||
|
||||
@unittest.skipIf(os.name == 'nt', 'WatchedFileHandler not appropriate for Windows.')
|
||||
@unittest.skipUnless(threading, 'Threading required for this test.')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue