Skip to content

Commit 49facde

Browse files
committed
Merge branch 'ms/t7605-test-path-is-helpers' into next
Test updates. * ms/t7605-test-path-is-helpers: t7605: use test_path_is_file instead of test -f
2 parents 497ff81 + 69efd53 commit 49facde

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

t/t7605-merge-resolve.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ merge_c1_to_c2_cmds='
3434
test "$(git rev-parse c1)" = "$(git rev-parse HEAD^1)" &&
3535
test "$(git rev-parse c2)" = "$(git rev-parse HEAD^2)" &&
3636
git diff --exit-code &&
37-
test -f c0.c &&
38-
test -f c1.c &&
39-
test -f c2.c &&
37+
test_path_is_file c0.c &&
38+
test_path_is_file c1.c &&
39+
test_path_is_file c2.c &&
4040
test 3 = $(git ls-tree -r HEAD | wc -l) &&
4141
test 3 = $(git ls-files | wc -l)
4242
'

0 commit comments

Comments
 (0)