hurl/integration/tests/error_query_invalid_utf8.py
2020-08-27 16:44:57 +02:00

12 lines
275 B
Python

from tests import app
from flask import make_response
from io import BytesIO
@app.route("/error-query-invalid-utf8")
def error_query_invalid_utf8():
result = BytesIO()
result.write(b'\xff')
data = result.getvalue()
resp = make_response(data)
return resp