diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-09-28 15:10:31 +1000 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-09-28 15:10:31 +1000 |
commit | 070aa27cf5f88d2036c88c110e00421c427c0c9b (patch) | |
tree | 7d3da73fe7ce629edfce2dbbe0365bf00cf08e3d /test/netlib/http/test_cookies.py | |
parent | b21f076cc81c67ec9e65b57c6c41ad5b395e6f51 (diff) | |
download | mitmproxy-070aa27cf5f88d2036c88c110e00421c427c0c9b.tar.gz mitmproxy-070aa27cf5f88d2036c88c110e00421c427c0c9b.tar.bz2 mitmproxy-070aa27cf5f88d2036c88c110e00421c427c0c9b.zip |
parse_set_cookie header returns an empty list if no cookies are found
This matches parse_cookie, and is more idiomatic.
Diffstat (limited to 'test/netlib/http/test_cookies.py')
-rw-r--r-- | test/netlib/http/test_cookies.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/netlib/http/test_cookies.py b/test/netlib/http/test_cookies.py index 905f549c..80ffb0a6 100644 --- a/test/netlib/http/test_cookies.py +++ b/test/netlib/http/test_cookies.py @@ -194,10 +194,10 @@ def test_parse_set_cookie_header(): vals = [ [ - "", None + "", [] ], [ - ";", None + ";", [] ], [ "one=uno", @@ -257,7 +257,7 @@ def test_parse_set_cookie_header(): for i in range(len(expected)): set_cookie_equal(ret2[i], expected[i]) else: - assert ret is None + assert not ret def test_refresh_cookie(): |