Test scripts in file t4121-apply-diffs.sh are written in old style, where the test_expect_success command and test title are written on separate lines Signed-off-by: Vivan Garg <gvivan6@xxxxxxxxx> --- Greetings, my name is Vivan Garg. I am currently pursuing a double major in computer science and finance at the University of Waterloo in Canada. I am currently completing my third software developer internship at Morgan Stanley. As part of my coursework, I studied C and shell scripting, which I then applied in internships and personal projects. C++ is the programming language that I am most comfortable with right now. Please feel free to address me as Vivan, and my pronouns are he/him/his. I meet the requirements for GSOC participation. So far, I've either read or skimmed the following documents based on prior knowledge: Submitting patches, Coding guidelines, Myfirstcontribution.txt, gittutorial, Giteveryday, readme, Hacking-Git, General-Microproject-Information, SoC-2023-Ideas, and General-Application-Information. I'm looking forward to having a fantastic time here! t/t4121-apply-diffs.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/t/t4121-apply-diffs.sh b/t/t4121-apply-diffs.sh index a80cec9d11..2ff38ededa 100755 --- a/t/t4121-apply-diffs.sh +++ b/t/t4121-apply-diffs.sh @@ -16,8 +16,8 @@ echo '1 7 8' >file -test_expect_success 'setup' \ - 'git add file && +test_expect_success 'setup' ' + git add file && git commit -q -m 1 && git checkout -b test && mv file file.tmp && @@ -27,10 +27,11 @@ test_expect_success 'setup' \ git commit -a -q -m 2 && echo 9 >>file && git commit -a -q -m 3 && - git checkout main' + git checkout main +' -test_expect_success \ - 'check if contextually independent diffs for the same file apply' \ - '( git diff test~2 test~1 && git diff test~1 test~0 )| git apply' +test_expect_success 'check if contextually independent diffs for the same file apply' ' + ( git diff test~2 test~1 && git diff test~1 test~0 )| git apply +' test_done -- 2.37.0 (Apple Git-136)