From: Ashwani Kumar Kamal Date: Thu, 12 Feb 2026 05:45:30 +0000 (+0530) Subject: t9812: modernize test path helpers X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=580d86576a349f9a64652bb0707984d7fb5d6e54;p=thirdparty%2Fgit.git t9812: modernize test path helpers Replace assertion-style 'test -f' checks with Git's test_path_is_file() helper for clearer failures and consistency. Signed-off-by: Ashwani Kumar Kamal Signed-off-by: Junio C Hamano --- diff --git a/t/t9812-git-p4-wildcards.sh b/t/t9812-git-p4-wildcards.sh index 254a7c2446..e91004ee79 100755 --- a/t/t9812-git-p4-wildcards.sh +++ b/t/t9812-git-p4-wildcards.sh @@ -30,13 +30,13 @@ test_expect_success 'wildcard files git p4 clone' ' test_when_finished cleanup_git && ( cd "$git" && - test -f file-wild#hash && + test_path_is_file file-wild#hash && if test_have_prereq !MINGW,!CYGWIN then - test -f file-wild\*star + test_path_is_file file-wild\*star fi && - test -f file-wild@at && - test -f file-wild%percent + test_path_is_file file-wild@at && + test_path_is_file file-wild%percent ) '