t3030: use test_path_is_missing()
We 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
parent
4a6f11fd7b
commit
245b9ba0ba
|
@ -604,7 +604,7 @@ test_expect_success 'merge removes empty directories' '
|
|||
git commit -mremoved-d/e &&
|
||||
git checkout master &&
|
||||
git merge -s recursive rm &&
|
||||
test_must_fail test -d d
|
||||
test_path_is_missing d
|
||||
'
|
||||
|
||||
test_expect_success 'merge-recursive simple w/submodule' '
|
||||
|
|
Loading…
Reference in New Issue