From: Dmitry Jemerov Date: Mon, 26 Sep 2011 17:05:16 +0000 (+0200) Subject: fix typo in test name X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4e1bded46c1f34f0306608a35bd81d1cde38e50c;p=jinja2.git fix typo in test name --- diff --git a/jinja2/testsuite/lexnparse.py b/jinja2/testsuite/lexnparse.py index 562df62..1ac08f3 100644 --- a/jinja2/testsuite/lexnparse.py +++ b/jinja2/testsuite/lexnparse.py @@ -317,7 +317,7 @@ class SyntaxTestCase(JinjaTestCase): self.assert_raises(TemplateSyntaxError, env.from_string, '{% block x %}{% endblock y %}') - def test_contant_casing(self): + def test_constant_casing(self): for const in True, False, None: tmpl = env.from_string('{{ %s }}|{{ %s }}|{{ %s }}' % ( str(const), str(const).lower(), str(const).upper()