aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/data/test_flow_export/python_post_json.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/mitmproxy/data/test_flow_export/python_post_json.py b/test/mitmproxy/data/test_flow_export/python_post_json.py
index 7e105bf6..6c1b9740 100644
--- a/test/mitmproxy/data/test_flow_export/python_post_json.py
+++ b/test/mitmproxy/data/test_flow_export/python_post_json.py
@@ -6,11 +6,13 @@ headers = {
'content-type': 'application/json',
}
+
json = {
- "name": "example",
- "email": "example@example.com"
+ u'email': u'example@example.com',
+ u'name': u'example',
}
+
response = requests.request(
method='POST',
url=url,