On Thu, Jun 19, 2025 at 07:57:47PM -0300, Lucas Seiki Oshiro wrote: > diff --git a/t/t1900-repo-info.sh b/t/t1900-repo-info.sh > index f634e1a285..998c835795 100755 > --- a/t/t1900-repo-info.sh > +++ b/t/t1900-repo-info.sh > @@ -18,5 +18,9 @@ test_expect_success PERLJSON 'json: returns empty output with allow-empty' ' > git repo-info --format=json >output && > test_line_count = 2 output > ' Tests should be separated from one another by an empty line. > +test_expect_success 'plaintext: returns empty output with allow-empty' ' > + git repo-info --format=plaintext >output && > + test_line_count = 0 output > +' Patrick