On Thu, Feb 29, 2024 at 4:57 PM Aryan Gupta via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > Modernize the formatting of the test script to align with current > standards and improve its overall readability. > > Signed-off-by: Aryan Gupta <garyan447@xxxxxxxxx> > --- > diff --git a/t/t0010-racy-git.sh b/t/t0010-racy-git.sh > @@ -16,19 +16,18 @@ do > files=$(git diff-files -p) > - test_expect_success \ > - "Racy GIT trial #$trial part A" \ > - 'test "" != "$files"' > + test_expect_success "Racy git trial #$trial part A" ' > + test "" != "$files" > + ' This version (v2) addresses my review comments about v1. Thanks.