]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t7605: use test_path_is_file instead of test -f
authorMansi Singh <mansimaanu8627@gmail.com>
Tue, 10 Mar 2026 22:50:22 +0000 (22:50 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 10 Mar 2026 23:25:10 +0000 (16:25 -0700)
Replace old-style 'test -f' path checks with the modern
test_path_is_file helper in the merge_c1_to_c2_cmds block.

The helper provides clearer failure messages and is the
established convention in Git's test suite.

Signed-off-by: Mansi Singh <mansimaanu8627@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7605-merge-resolve.sh

index 5d56c3854647b2f2bc2fdf4221b1f76f5d0b0629..44de97a480f785f6b92fa2da907df81766965372 100755 (executable)
@@ -34,9 +34,9 @@ merge_c1_to_c2_cmds='
        test "$(git rev-parse c1)" = "$(git rev-parse HEAD^1)" &&
        test "$(git rev-parse c2)" = "$(git rev-parse HEAD^2)" &&
        git diff --exit-code &&
-       test -f c0.c &&
-       test -f c1.c &&
-       test -f c2.c &&
+       test_path_is_file c0.c &&
+       test_path_is_file c1.c &&
+       test_path_is_file c2.c &&
        test 3 = $(git ls-tree -r HEAD | wc -l) &&
        test 3 = $(git ls-files | wc -l)
 '