Daniel Ferreira <bnmvco@xxxxxxxxx> writes: > diff --git a/t/t0065-dir-iterator.sh b/t/t0065-dir-iterator.sh > index 46e5ce5..4c6632f 100755 > --- a/t/t0065-dir-iterator.sh > +++ b/t/t0065-dir-iterator.sh > @@ -15,31 +15,41 @@ test_expect_success 'setup' ' > >dir/d/e/d/a && > > mkdir -p dir2/a/b/c/ && > - >dir2/a/b/c/d > + >dir2/a/b/c/d && > + > + >file > ' > > -test_expect_success 'dir-iterator should iterate through all files' ' > - cat >expect-sorted-output <<-\EOF && > - [d] (a) [a] ./dir/a > - [d] (a/b) [b] ./dir/a/b > - [d] (a/b/c) [c] ./dir/a/b/c > - [d] (d) [d] ./dir/d > - [d] (d/e) [e] ./dir/d/e > - [d] (d/e/d) [d] ./dir/d/e/d > - [f] (a/b/c/d) [d] ./dir/a/b/c/d > - [f] (a/e) [e] ./dir/a/e > - [f] (b) [b] ./dir/b > - [f] (c) [c] ./dir/c > - [f] (d/e/d/a) [a] ./dir/d/e/d/a > - EOF > +cat >expect-sorted-output <<-\EOF && > +[d] (a) [a] ./dir/a > +[d] (a/b) [b] ./dir/a/b > +[d] (a/b/c) [c] ./dir/a/b/c > +[d] (d) [d] ./dir/d > +[d] (d/e) [e] ./dir/d/e > +[d] (d/e/d) [d] ./dir/d/e/d > +[f] (a/b/c/d) [d] ./dir/a/b/c/d > +[f] (a/e) [e] ./dir/a/e > +[f] (b) [b] ./dir/b > +[f] (c) [c] ./dir/c > +[f] (d/e/d/a) [a] ./dir/d/e/d/a > +EOF > > - test-dir-iterator ./dir >out && There is something fishy going on around here in this patch, pushing the code to prepare test vector out of test_expect_success block. A mistake in rebasing or something? If you need to reroll the series to update this part, please rename the test to t0066 and do remember to update the logmessage of a few commits that refer to t0065. Thanks.