Skip to content

Commit b8afb90

Browse files
Denton-Lgitster
authored andcommitted
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>
1 parent 53a06cf commit b8afb90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/lib-git-p4.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ stop_and_cleanup_p4d () {
175175

176176
cleanup_git () {
177177
retry_until_success rm -r "$git"
178-
test_must_fail test -d "$git" &&
178+
test_path_is_missing "$git" &&
179179
retry_until_success mkdir "$git"
180180
}
181181

0 commit comments

Comments
 (0)