﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21476	Cache tests make an incorrect use of `HttpRequest`	Unai Zalakain	Unai Zalakain	"Cache tests directly append the query string to the request path:

{{{
request = HttpRequest()
request.META = {
    'SERVER_NAME': 'testserver',
    'SERVER_PORT': 80,
}
request.method = method 
request.path = request.path_info = ""/cache/%s"" % path
return request
}}}

`HttpRequest.get_full_path()` uses the `HttpRequest.META['QUERY_STRING']` attribute to determine, escape and encode the query string."	Cleanup/optimization	closed	Core (Cache system)	dev	Normal	fixed	tests, cache, request	Baptiste Mispelon	Accepted	1	0	0	0	0	0
