fix test_cleanup_keep for expecting symlinks

This commit is contained in:
Ronny Pfannschmidt 2018-10-17 21:16:44 +02:00
parent cc335d44a0
commit 8dca8f3c9f
1 changed files with 1 additions and 1 deletions

View File

@ -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):