1
0
mirror of https://github.com/git/git synced 2024-07-02 15:48:44 +00:00

t2104: style fixes

We use tabs to indent, not two or four spaces.

These days, even the test fixture preparation should be done inside
test_expect_success block.

Address these two style violations in this test.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2024-04-02 11:41:03 -07:00
parent c2cbfbd2e2
commit 40c45f809f

View File

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