fix test_cleanup_keep for expecting symlinks
This commit is contained in:
parent
cc335d44a0
commit
8dca8f3c9f
|
@ -248,7 +248,7 @@ class TestNumberedDir(object):
|
|||
|
||||
def test_cleanup_keep(self, tmp_path):
|
||||
self._do_cleanup(tmp_path)
|
||||
a, b = tmp_path.iterdir()
|
||||
a, b = (x for x in tmp_path.iterdir() if not x.is_symlink())
|
||||
print(a, b)
|
||||
|
||||
def test_cleanup_locked(self, tmp_path):
|
||||
|
|
Loading…
Reference in New Issue