diff --git a/tests/test_utils.py b/tests/test_utils.py index 0a9e972..aead436 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -19,6 +19,8 @@ def test_check_path(): assert check_path(existing_dir) is True assert check_path(nonexisting_dir) is False assert check_path(symlink_dir, is_symlink=True) is True + assert check_path(symlink_dir) is False + assert check_path(existing_dir, is_symlink=True) is False assert check_path(cache_path) is False