We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ceb69f + 580d865 commit c61120cCopy full SHA for c61120c
1 file changed
t/t9812-git-p4-wildcards.sh
@@ -30,13 +30,13 @@ test_expect_success 'wildcard files git p4 clone' '
30
test_when_finished cleanup_git &&
31
(
32
cd "$git" &&
33
- test -f file-wild#hash &&
+ test_path_is_file file-wild#hash &&
34
if test_have_prereq !MINGW,!CYGWIN
35
then
36
- test -f file-wild\*star
+ test_path_is_file file-wild\*star
37
fi &&
38
- test -f file-wild@at &&
39
- test -f file-wild%percent
+ test_path_is_file file-wild@at &&
+ test_path_is_file file-wild%percent
40
)
41
'
42
0 commit comments