Alex Vandiver <alexmv@xxxxxxxxxxx> writes: > These were mistakenly left in when the test was introduced, in > 1487372d3 ("fsmonitor: store fsmonitor bitmap before splitting index", > 2017-11-09) > > Signed-off-by: Alex Vandiver <alexmv@xxxxxxxxxxx> > --- > t/t7519-status-fsmonitor.sh | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/t/t7519-status-fsmonitor.sh b/t/t7519-status-fsmonitor.sh > index eb2d13bbc..19b2a0a0f 100755 > --- a/t/t7519-status-fsmonitor.sh > +++ b/t/t7519-status-fsmonitor.sh > @@ -307,9 +307,7 @@ test_expect_success 'splitting the index results in the same state' ' > dirty_repo && > git update-index --fsmonitor && > git ls-files -f >expect && > - test-dump-fsmonitor >&2 && echo && > git update-index --fsmonitor --split-index && > - test-dump-fsmonitor >&2 && echo && > git ls-files -f >actual && > test_cmp expect actual > ' Hmph, by default the standard output and standard error streams are not shown in the test output, and it would help while debugging test failures, so I am not sure if this is a good change. With the previous step [4/6], we can lose the "echo", of course, and I do not think we need >&2 redirection there, either.