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>
maint
Denton Liu 2019-12-20 10:15:48 -08:00 committed by Junio C Hamano
parent 53a06cf39b
commit b8afb908c2
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}