Skip to content

Commit

Permalink
Merge branch 'jc/t2104-style-update'
Browse files Browse the repository at this point in the history
Coding style fixes.

* jc/t2104-style-update:
  t2104: style fixes
  • Loading branch information
gitster committed Apr 10, 2024
2 parents 280b74c + 40c45f8 commit f43863e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions t/t2104-update-index-skip-worktree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ TEST_PASSES_SANITIZE_LEAK=true
sane_unset GIT_TEST_SPLIT_INDEX

test_set_index_version () {
GIT_INDEX_VERSION="$1"
export GIT_INDEX_VERSION
GIT_INDEX_VERSION="$1"
export GIT_INDEX_VERSION
}

test_set_index_version 3

cat >expect.full <<EOF
H 1
H 2
H 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
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 &&
Expand Down

0 comments on commit f43863e

Please sign in to comment.