summaryrefslogtreecommitdiff
path: root/tests/template_backends
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_backends')
-rw-r--r--tests/template_backends/test_dummy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_backends/test_dummy.py b/tests/template_backends/test_dummy.py
index 5e1639cd80..92861c24da 100644
--- a/tests/template_backends/test_dummy.py
+++ b/tests/template_backends/test_dummy.py
@@ -37,9 +37,9 @@ class TemplateStringsTests(SimpleTestCase):
content = template.render({'name': 'world'})
self.assertEqual(content, "Hello world!\n")
- def test_get_template_non_existing(self):
+ def test_get_template_nonexistent(self):
with self.assertRaises(TemplateDoesNotExist) as e:
- self.engine.get_template('template_backends/non_existing.html')
+ self.engine.get_template('template_backends/nonexistent.html')
self.assertEqual(e.exception.backend, self.engine)
def test_get_template_syntax_error(self):