[svn] merged newparser into trunk
--HG--
branch : trunk
diff --git a/tests/test_security.py b/tests/test_security.py
index 95d3371..78a1e0a 100644
--- a/tests/test_security.py
+++ b/tests/test_security.py
@@ -43,9 +43,9 @@
>>> env.from_string("{% for item.attribute in seq %}...{% endfor %}")
Traceback (most recent call last):
...
-TemplateSyntaxError: can't assign to expression. (line 1)
+TemplateSyntaxError: cannot assign to expression (line 1)
>>> env.from_string("{% for foo, bar.baz in seq %}...{% endfor %}")
Traceback (most recent call last):
...
-TemplateSyntaxError: can't assign to expression. (line 1)
+TemplateSyntaxError: cannot assign to expression (line 1)
'''