From: Jeff King <peff@xxxxxxxx> In a real webserver's CGI call, gitweb.cgi would typically see $REQUEST_URI set. This variable does impact how we display our URL in the resulting page, so let's try to make our test as realistic as possible (we can just use the $PATH_INFO our caller passed in, if any). This doesn't change the outcome of any tests, but it will help us add some new tests in a future patch. Signed-off-by: Jeff King <peff@xxxxxxxx> Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- t/gitweb-lib.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/t/gitweb-lib.sh b/t/gitweb-lib.sh index b8455d1182..1f32ca66ea 100644 --- a/t/gitweb-lib.sh +++ b/t/gitweb-lib.sh @@ -60,10 +60,7 @@ gitweb_run () { REQUEST_METHOD='GET' QUERY_STRING=$1 PATH_INFO=$2 -<<<<<<< HEAD REQUEST_URI=/gitweb.cgi$PATH_INFO -======= ->>>>>>> t/gitweb-lib.sh: drop confusing quotes export GATEWAY_INTERFACE HTTP_ACCEPT REQUEST_METHOD \ QUERY_STRING PATH_INFO REQUEST_URI -- gitgitgadget