1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-28 04:36:10 +02:00

Merge branch 'jc/t2104-style-update'

Coding style fixes.

* jc/t2104-style-update:
  t2104: style fixes
This commit is contained in:
Junio C Hamano 2024-04-10 10:00:09 -07:00
commit f43863e686

View File

@ -17,21 +17,21 @@ test_set_index_version () {
test_set_index_version 3
cat >expect.full <<EOF
H 1
H 2
H sub/1
H sub/2
EOF
cat >expect.skip <<EOF
S 1
H 2
S sub/1
H sub/2
EOF
test_expect_success 'setup' '
cat >expect.full <<-\EOF &&
H 1
H 2
H sub/1
H sub/2
EOF
cat >expect.skip <<-\EOF &&
S 1
H 2
S sub/1
H sub/2
EOF
mkdir sub &&
touch ./1 ./2 sub/1 sub/2 &&
git add 1 2 sub/1 sub/2 &&