Browse Source

Merge branch 'ct/t0000-use-test-path-is-file'

Micro clean-up of a test script.

* ct/t0000-use-test-path-is-file:
  t0000: use test_path_is_file instead of "test -f"
maint
Junio C Hamano 4 years ago
parent
commit
a42035fbe4
  1. 2
      t/t0000-basic.sh

2
t/t0000-basic.sh

@ -1191,7 +1191,7 @@ test_expect_success 'writing this tree with --missing-ok' ' @@ -1191,7 +1191,7 @@ test_expect_success 'writing this tree with --missing-ok' '
test_expect_success 'git read-tree followed by write-tree should be idempotent' '
rm -f .git/index &&
git read-tree $tree &&
test -f .git/index &&
test_path_is_file .git/index &&
newtree=$(git write-tree) &&
test "$newtree" = "$tree"
'

Loading…
Cancel
Save