Merge branch 'md/t1403-path-is-file'

Test tweak.

* md/t1403-path-is-file:
  t1403: verify that path exists and is a file
This commit is contained in:
Junio C Hamano
2025-04-15 13:50:14 -07:00

View File

@@ -196,7 +196,7 @@ test_expect_success 'show-ref --verify with dangling ref' '
remove_object() {
file=$(sha1_file "$*") &&
test -e "$file" &&
test_path_is_file "$file" &&
rm -f "$file"
} &&