Taylor Blau <me@xxxxxxxxxxxx> writes: > Hi Caleb, > > On Sun, Oct 18, 2020 at 12:55:22AM +0000, Caleb Tillman wrote: >> The test_path_is* functions provide debug-friendly messages upon failure. > > The body looks fine to me. Your subject is getting a little long, > however. Typical guidance would be somewhere around 50 (at least in my > opinion, I thought we had something in Documentation/CodingGuidelines, > but I couldn't find anything). > > Maybe something instead like: > > t0000: replace 'test -f' with helpers > > or: > > t0000: modernize test style > > If you're looking for inspiration, you can use `git log`'s `-S` flag to > look for anything that mentions 'test_path_is_file' to see how similar > patches have been written in the past. (When I was recommending > alternatives, I ran "git log --oneline -Stest_path_is_file -- t"). Thanks for a great educational input. >> diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh >> index 923281af93..eb99892a87 100755 >> --- a/t/t0000-basic.sh >> +++ b/t/t0000-basic.sh >> @@ -1191,7 +1191,7 @@ test_expect_success 'writing this tree with --missing-ok' ' >> test_expect_success 'git read-tree followed by write-tree should be idempotent' ' >> rm -f .git/index && >> git read-tree $tree && >> - test -f .git/index && >> + test_path_is_file .git/index && > > This looks totally correct to me. By nature of "microproject" exchange, it is almost trivial to get the patch text right after an exchange. The problems are typically so easy that there is only one way to write the code part correctly. Polishing proposed log message is much harder ;-) Thanks.