diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 10:11:51 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-03 10:11:51 +1200 |
commit | e35e6d90b977ac19e3816b2a8029a12287c976ac (patch) | |
tree | 25adaa30d685df2f50f8175a4ca71cc042ae858b /test/test_language_http.py | |
parent | bf71a9a2a03697be4332f51727fa19fc4bcb4c62 (diff) | |
download | mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.tar.gz mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.tar.bz2 mitmproxy-e35e6d90b977ac19e3816b2a8029a12287c976ac.zip |
Remove bundled pyparsing, install as external package
Adapt ValueLiteral parsing to suit
Diffstat (limited to 'test/test_language_http.py')
-rw-r--r-- | test/test_language_http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_language_http.py b/test/test_language_http.py index 9892e887..839c02b3 100644 --- a/test/test_language_http.py +++ b/test/test_language_http.py @@ -341,7 +341,7 @@ def test_pathodspec(): def test_pathodspec_freeze(): e = http.PathodResponse( base.ValueLiteral( - "200:b'foo':i10,'\\''".encode( + "200:b'foo':i10,'\\x27'".encode( "string_escape" ) ) |