]> git.ipfire.org Git - thirdparty/git.git/commit
t/lib-read-tree-m-3way: modernize style
authorShaoxuan Yuan <shaoxuan.yuan02@gmail.com>
Wed, 2 Feb 2022 06:42:59 +0000 (14:42 +0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 2 Feb 2022 19:32:56 +0000 (11:32 -0800)
commitddea5719fa70611d1556b8128e58cadaa65ecf34
tree9ada7b029b5a58495ffcb93aa373e476a41a8ee0
parent4c53a8c20f8984adb226293a3ffd7b88c3f4ac1a
t/lib-read-tree-m-3way: modernize style

Many invocations of the test_expect_success command in this
file are written in old style where the command, an optional
prerequisite, and the test title are written on separate
lines, and the executable script string begins on its own
line, and these lines are pasted together with backslashes
as necessary.

An invocation of the test_expect_success command in modern
test scripts however writes the prerequisite and the title
on the same line as the test_expect_success command itself,
and ends the line with a single quote that begins the
executable script string.

Update the style for uniformity.

Signed-off-by: Shaoxuan Yuan <shaoxuan.yuan02@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-read-tree-m-3way.sh