On Mon, Mar 06, 2023 at 12:38:38AM -0500, Jeff King wrote: > @@ -612,4 +613,10 @@ test_expect_success 'bundle progress includes write phase' ' > grep 'Writing' err > ' > > +test_expect_success TTY '--quiet disables all bundle progress' ' > + test_terminal env GIT_PROGRESS_DELAY=0 \ > + git bundle --quiet create out.bundle --all 2>err && > + test_must_be_empty err > +' Err, this should be "create --quiet", of course, not the other way around. I did run it before sending, but I removed the "--quiet" to double-check that it generates progress with test_terminal. But then added it back in to the wrong spot. :-/ -Peff