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