From: Caleb Tillman Date: Sat, 17 Oct 2020 02:43:53 +0000 (+0000) Subject: t0000: use test_path_is_file instead of "test -f" X-Git-Tag: v2.30.0-rc0~146^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac9b5475487c95c33ebd66a9c2207be63f07cc30;p=thirdparty%2Fgit.git t0000: use test_path_is_file instead of "test -f" Signed-off-by: Caleb Tillman Signed-off-by: Junio C Hamano --- diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index 923281af93..eb99892a87 100755 --- a/t/t0000-basic.sh +++ b/t/t0000-basic.sh @@ -1191,7 +1191,7 @@ test_expect_success 'writing this tree with --missing-ok' ' test_expect_success 'git read-tree followed by write-tree should be idempotent' ' rm -f .git/index && git read-tree $tree && - test -f .git/index && + test_path_is_file .git/index && newtree=$(git write-tree) && test "$newtree" = "$tree" '