On Tue, Mar 11, 2025 at 9:48 PM Junio C Hamano <gitster@xxxxxxxxx> wrote: > > Christian Couder <christian.couder@xxxxxxxxx> writes: > > > + GIT_NO_LAZY_FETCH=0 test_must_fail git clone -c remote.lop.promisor=true \ > > This one triggers test-lint violation. > > diff --git a/t/t5710-promisor-remote-capability.sh b/t/t5710-promisor-remote-capability.sh > index 23203814d6..4c5c3c7656 100755 > --- a/t/t5710-promisor-remote-capability.sh > +++ b/t/t5710-promisor-remote-capability.sh > @@ -257,7 +257,7 @@ test_expect_success "clone with 'KnownUrl' and url not advertised" ' > # It should fail because the client will reject the LOP > # as URLs are different, and the server cannot lazy fetch as > # the LOP URL is missing. > - GIT_NO_LAZY_FETCH=0 test_must_fail git clone -c remote.lop.promisor=true \ > + test_must_fail env GIT_NO_LAZY_FETCH=0 git clone -c remote.lop.promisor=true \ > -c remote.lop.fetch="+refs/heads/*:refs/remotes/lop/*" \ > -c remote.lop.url="file://$(pwd)/lop" \ > -c promisor.acceptfromserver=KnownUrl \ Sorry for forgetting to check that and thanks for the fix. I use it in the next version.