From 1c0fe49906a95b588503de537fa949d2f725df7d Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Wed, 6 Jul 2022 23:03:38 -0400 Subject: [PATCH] Adding missing tests for utils --- tests/test_utils.py | 2 ++ 1 file changed, 2 insertions(+) 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