mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-12 15:36:01 +03:00
8 lines
223 B
Python
8 lines
223 B
Python
|
from tests import app
|
||
|
from flask import Response
|
||
|
|
||
|
@app.route("/error-output-decompress")
|
||
|
def error_output_decompress():
|
||
|
headers = {}
|
||
|
headers['Content-Encoding'] = 'gzip'
|
||
|
return Response('Hello', headers=headers)
|