"Johannes Schindelin via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > diff --git a/t/t5537-fetch-shallow.sh b/t/t5537-fetch-shallow.sh > index 9e16512fe31..4f10057e9f1 100755 > --- a/t/t5537-fetch-shallow.sh > +++ b/t/t5537-fetch-shallow.sh > @@ -237,7 +237,7 @@ test_expect_success 'shallow fetches check connectivity before writing shallow f > git -C "$REPO" config protocol.version 2 && > git -C client config protocol.version 2 && > > - git -C client fetch --depth=2 "$HTTPD_URL/one_time_sed/repo" master:a_branch && > + git -C client fetch --depth=2 "$HTTPD_URL/one_time_perl/repo" master:a_branch && > > # Craft a situation in which the server sends back an unshallow request > # with an empty packfile. This is done by refetching with a shorter > @@ -246,13 +246,13 @@ test_expect_success 'shallow fetches check connectivity before writing shallow f > printf "$(test_oid sed)" \ Hmm, shouldn't the test-oid token "sed" whose value is set up in the setup section of this test script also be renamed to "perl"? Or, if we are actively taking advantage of the fact that the syntax of the replacement operator is the same between the languages, perhaps "sed" is better renamed to something more language agnostic and reflects the purpose/reason why we extend the packet header by two bytes with the one-time munging process? > "$(git -C "$REPO" rev-parse HEAD)" \ > "$(git -C "$REPO" rev-parse HEAD^)" \ > - >"$HTTPD_ROOT_PATH/one-time-sed" && > + >"$HTTPD_ROOT_PATH/one-time-perl" && Other than that, this step looked quite sensible. Thanks.