aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2016-06-04 18:28:03 +0530
committerShadab Zafar <dufferzafar0@gmail.com>2016-06-04 18:28:03 +0530
commit0d4437a404e27cbaf648eeadb8a690c9852e795d (patch)
treef123a699e93ace93f88f3092709e1af7bc03bce0 /test
parent1c8223112900c26386560677134092cab5dbeea6 (diff)
downloadmitmproxy-0d4437a404e27cbaf648eeadb8a690c9852e795d.tar.gz
mitmproxy-0d4437a404e27cbaf648eeadb8a690c9852e795d.tar.bz2
mitmproxy-0d4437a404e27cbaf648eeadb8a690c9852e795d.zip
Fix function name typo
Diffstat (limited to 'test')
-rw-r--r--test/pathod/test_language_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathod/test_language_base.py b/test/pathod/test_language_base.py
index 47e51bb0..a3e3935b 100644
--- a/test/pathod/test_language_base.py
+++ b/test/pathod/test_language_base.py
@@ -38,7 +38,7 @@ class TestTokValueNakedLiteral:
class TestTokValueLiteral:
- def test_espr(self):
+ def test_expr(self):
v = base.TokValueLiteral("foo")
assert v.expr()
assert v.val == b"foo"