summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordieter <dieter@handshake.de>2020-07-05 15:56:26 +0200
committerdieter <dieter@handshake.de>2020-07-05 15:56:26 +0200
commit85e911aaa1991a06d6807f8f352d4a3a24090338 (patch)
treea7db76c78e89f8d2956a912539d9965442985b1a
parenta09ffdbd2bbfb59a1c2d737c43aba2427f367d16 (diff)
downloadzope-tales-path_expr_with_configurable_builtins.tar.gz
-rw-r--r--src/zope/tales/tests/test_expressions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/tales/tests/test_expressions.py b/src/zope/tales/tests/test_expressions.py
index 6ff8f52..1653c29 100644
--- a/src/zope/tales/tests/test_expressions.py
+++ b/src/zope/tales/tests/test_expressions.py
@@ -392,7 +392,7 @@ class TestParsedExpressions(ExpressionTestBase):
from ..expressions import PathExpr, SubPathExpr
class MySubPathExpr(SubPathExpr):
- ALLOWED_BUILTINS = {'True':True, 'False':False, 'x':None}
+ ALLOWED_BUILTINS = {'True': True, 'False': False, 'x': None}
class MyPathExpr(PathExpr):
SUBEXPR_FACTORY = MySubPathExpr