From dff9ed50b9b5249ccc9f8d20745e84b97a0ca3da Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Sat, 30 Sep 2023 14:13:46 -0400 Subject: [PATCH] fix hint --- tests/test_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cache.py b/tests/test_cache.py index 230c8de..51bb61c 100644 --- a/tests/test_cache.py +++ b/tests/test_cache.py @@ -27,7 +27,7 @@ def test_cache(tmp_path: Path) -> None: cache["not a key"] -def test_cache_dir(monkeypatch): +def test_cache_dir(monkeypatch) -> None: some_path = Path("/some/path").expanduser().resolve() monkeypatch.setattr(_cache, "PYCONIFY_CACHE", str(some_path)) assert get_cache_directory() == some_path