(request)
| 988 | """ |
| 989 | |
| 990 | def get_stream_response_unicode(request): |
| 991 | resp = StreamingHttpResponse(self.sequence_unicode) |
| 992 | resp["Content-Type"] = "text/html; charset=UTF-8" |
| 993 | return resp |
| 994 | |
| 995 | r = GZipMiddleware(get_stream_response_unicode)(self.req) |
| 996 | self.assertEqual( |
nothing calls this directly
no test coverage detected