test/fscache: drop PathLike annotation

Drop the PathLike annotation, since it is not compatible to py-3.6.

Signed-off-by: David Rheinsberg <david.rheinsberg@gmail.com>
This commit is contained in:
David Rheinsberg 2022-12-07 13:44:57 +01:00
parent e793cc0eb5
commit 8511add169

View file

@ -39,7 +39,7 @@ def test_calculate_size(tmpdir):
assert fscache.FsCache._calculate_size(os.path.join(tmpdir, "dir")) == 6
def test_pathlike(tmpdir: os.PathLike[str]):
def test_pathlike(tmpdir):
#
# Verify behavior of `__fspath__()`.
#