summaryrefslogtreecommitdiff
path: root/t/lib-git-p4.sh
diff options
context:
space:
mode:
authorDenton Liu <liu.denton@gmail.com>2019-12-20 18:15:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-12-20 19:30:44 (GMT)
commitb8afb908c261752310d4792f901c68fe27b77b40 (patch)
tree48a81a8e3c6916c7f23f04e6d0e5ad6259148c4e /t/lib-git-p4.sh
parent53a06cf39b756eddfe4a2a34da93e3d04eb7b728 (diff)
downloadgit-b8afb908c261752310d4792f901c68fe27b77b40.zip
git-b8afb908c261752310d4792f901c68fe27b77b40.tar.gz
git-b8afb908c261752310d4792f901c68fe27b77b40.tar.bz2
t/lib-git-p4: use test_path_is_missing()
Previously, cleanup_git() would use `test_must_fail test -d` to ensure that the directory is removed. However, test_must_fail should only be used for git commands. Use test_path_is_missing() instead to check that the directory has been removed. Signed-off-by: Denton Liu <liu.denton@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-git-p4.sh')
-rw-r--r--t/lib-git-p4.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-git-p4.sh b/t/lib-git-p4.sh
index 547b9f8..5aff2ab 100644
--- a/t/lib-git-p4.sh
+++ b/t/lib-git-p4.sh
@@ -175,7 +175,7 @@ stop_and_cleanup_p4d () {
cleanup_git () {
retry_until_success rm -r "$git"
- test_must_fail test -d "$git" &&
+ test_path_is_missing "$git" &&
retry_until_success mkdir "$git"
}