aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-02-20 11:36:18 -0800
committerJunio C Hamano <gitster@pobox.com>2026-02-20 11:36:18 -0800
commitc61120cf654250ac63bdcb5d5ee0bbb9caeae9cd (patch)
tree684532c7e5b7ac6b80f1c95880d11b48c9c3bf5a
parent8ceb69f85d0b68f5558c8c72ca104036523644fa (diff)
parent580d86576a349f9a64652bb0707984d7fb5d6e54 (diff)
downloadgit-c61120cf654250ac63bdcb5d5ee0bbb9caeae9cd.tar.xz
Merge branch 'ak/t9812-test-path-is-helpers'
Test update. * ak/t9812-test-path-is-helpers: t9812: modernize test path helpers
-rwxr-xr-xt/t9812-git-p4-wildcards.sh8
1 files changed, 4 insertions, 4 deletions
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
)
'