[PATCH v4 0/1] t1403: verify path exists and is a file
From: Mahendra Dani <hidden>
Date: 2025-03-04 11:23:35
Verify that if the path exists, then the path is a file using
test_path_is_file() helper function.
Mahendra Dani (1):
t1403: verify that path exists and is a file
t/t1403-show-ref.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Range-diff against v3:
1: 42dd686abe ! 1: d181f98d1a t1403: verify that path exists and is a file
@@ Metadata
## Commit message ##
t1403: verify that path exists and is a file
- test -e does not provide a nice error message when
- we hit test failures, so use test_path_exists() instead
- and verify that if the path exists then it is a file using test_path_is_file().
+ Verify that if the path exists then it is a file using test_path_is_file().
Signed-off-by: Mahendra Dani [off-list ref]
@@ t/t1403-show-ref.sh: test_expect_success 'show-ref --verify with dangling ref' '
remove_object() {
file=$(sha1_file "$*") &&
- test -e "$file" &&
-+ test_path_exists "$file" &&
+ test_path_is_file "$file" &&
rm -f "$file"
} &&
--
2.39.2 (Apple Git-143)