Merge branch 'dd/t5403-modernise'

Test micro-clean-up.

* dd/t5403-modernise:
  t5403: use test_path_is_file instead of test -f
This commit is contained in:
Junio C Hamano 2026-01-08 16:40:12 +09:00
commit 512351f2a8

View File

@ -109,7 +109,7 @@ test_expect_success 'post-checkout hook is triggered by clone' '
echo "$@" >"$GIT_DIR/post-checkout.args"
EOF
git clone --template=templates . clone3 &&
test -f clone3/.git/post-checkout.args
test_path_is_file clone3/.git/post-checkout.args
'
test_done