aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_utils.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2015-05-30 17:43:01 +1200
committerAldo Cortesi <aldo@nullcube.com>2015-05-30 17:43:01 +1200
commita09f3e06c36f440b9975cbdb8379734eae9f47cc (patch)
tree51758aa1fb09962f64cbd46ff07ebe37f0fcc07e /test/test_utils.py
parent4ed5043c67848bf717e48bc509d959422c8faeb6 (diff)
downloadmitmproxy-a09f3e06c36f440b9975cbdb8379734eae9f47cc.tar.gz
mitmproxy-a09f3e06c36f440b9975cbdb8379734eae9f47cc.tar.bz2
mitmproxy-a09f3e06c36f440b9975cbdb8379734eae9f47cc.zip
Factor logger out of pathoc, use it in pathod as well.
Diffstat (limited to 'test/test_utils.py')
-rw-r--r--test/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index 2a158a07..7d24e9e4 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -20,7 +20,7 @@ def test_parse_size():
def test_parse_anchor_spec():
assert utils.parse_anchor_spec("foo=200") == ("foo", "200")
- assert utils.parse_anchor_spec("foo") == None
+ assert utils.parse_anchor_spec("foo") is None
def test_data_path():