Skip to content

Commit

Permalink
Remove call to Path
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmkenney committed Feb 13, 2025
1 parent 4cdbd61 commit e058886
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_cache_dir_none(self):
# remove the env variable to get the default directory location
os.environ.pop("XDG_CACHE_HOME", None)
cache_dir = client.AlchemiscaleClient._determine_cache_dir(None)
assert cache_dir == Path().home() / ".cache" / "alchemiscale"
assert cache_dir == Path.home() / ".cache" / "alchemiscale"

def test_wrong_credential(
self,
Expand Down

0 comments on commit e058886

Please sign in to comment.