t5541: stop marking "used receive-pack service" test as v0 only
commit6ec90b5bf11ea9416715d31b8e3810e2915f1b9d
authorJeff King <peff@peff.net>
Thu, 23 Feb 2023 10:50:36 +0000 (23 05:50 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 23 Feb 2023 21:01:14 +0000 (23 13:01 -0800)
tree0906eba5ae9a89b2366b6679b393cfa686126dce
parent77fb36aa7eba5161c34dbe70ba4dd5449e079c87
t5541: stop marking "used receive-pack service" test as v0 only

We have a test which checks to see if a request to git-receive-pack was
made. Originally, it was checking the entire set of requests made in the
script so far, including clones, and thus it would break when run with
the v2 protocol (since that implies an extra request for fetches).

Since the previous commit, though, we are only checking the requests
made by a single push. And since there is no v2 push protocol, the test
now passes no matter what's in GIT_TEST_PROTOCOL_VERSION. We can just
run it all the time.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5541-http-push-smart.sh