fix typo in test name
[jinja2.git] / jinja2 / testsuite / lexnparse.py
index 562df624270feafbd32c3fe3b4af0d59221585ad..1ac08f31b6067255d80ee69b788ae62d442edc7c 100644 (file)
@@ -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()