aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2016-06-06 08:45:35 +1200
committerAldo Cortesi <aldo@corte.si>2016-06-06 08:45:35 +1200
commit08344ee38b1311b60afc906296f4720de748c945 (patch)
tree245d5924f8ba4dbdc241004b3a68832518a38a97 /test
parentc31b9c461dd4f905dcdb3f127c54d561a6166bb9 (diff)
parent25505733bc2830a5beffd84adba7e6e6d45e9f07 (diff)
downloadmitmproxy-08344ee38b1311b60afc906296f4720de748c945.tar.gz
mitmproxy-08344ee38b1311b60afc906296f4720de748c945.tar.bz2
mitmproxy-08344ee38b1311b60afc906296f4720de748c945.zip
Merge pull request #1215 from redfast00/master
Now keeps header capitalization
Diffstat (limited to 'test')
-rw-r--r--test/netlib/test_multidict.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/netlib/test_multidict.py b/test/netlib/test_multidict.py
index 7319f1c5..a35d5cc5 100644
--- a/test/netlib/test_multidict.py
+++ b/test/netlib/test_multidict.py
@@ -120,7 +120,7 @@ class TestMultiDict(object):
("a", "b"),
("x", "x"),
("c", "d"),
- ("X", "x"),
+ ("X", "X"),
("e", "f"),
))
md.set_all("x", ["1", "2", "3"])
@@ -128,7 +128,7 @@ class TestMultiDict(object):
("a", "b"),
("x", "1"),
("c", "d"),
- ("x", "2"),
+ ("X", "2"),
("e", "f"),
("x", "3"),
)