From 0d4437a404e27cbaf648eeadb8a690c9852e795d Mon Sep 17 00:00:00 2001 From: Shadab Zafar Date: Sat, 4 Jun 2016 18:28:03 +0530 Subject: [PATCH] Fix function name typo --- test/pathod/test_language_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pathod/test_language_base.py b/test/pathod/test_language_base.py index 47e51bb07..a3e3935bb 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"