Skip to content

Commit

Permalink
fix typo in test name
Browse files Browse the repository at this point in the history
  • Loading branch information
yole committed Sep 26, 2011
1 parent 5c5d061 commit 4e1bded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jinja2/testsuite/lexnparse.py
Expand Up @@ -317,7 +317,7 @@ def test_block_end_name(self):
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()
Expand Down

0 comments on commit 4e1bded

Please sign in to comment.