One title in t9700-perl-git.sh is in old style where the
test_expect_success command and test title are written on
separate lines.
Combine the test_expect_success command and the title in one line.
Signed-off-by: Zhang Yi <redacted>
---
t/t9700-perl-git.sh | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/t/t9700-perl-git.sh b/t/t9700-perl-git.sh
index b105d6d9d5..3f6396ef63 100755
--- a/t/t9700-perl-git.sh
+++ b/t/t9700-perl-git.sh
@@ -13,9 +13,8 @@ skip_all_if_no_Test_More
# set up test repository
-test_expect_success \
- 'set up test repository' \
- 'echo "test file 1" > file1 &&
+test_expect_success 'set up test repository' '
+ echo "test file 1" > file1 &&
echo "test file 2" > file2 &&
mkdir directory1 &&
echo "in directory1" >> directory1/file &&--
2.29.0-rc0