This should have stayed

This commit is contained in:
Hodossy Szabolcs 2017-09-26 08:18:36 +02:00
parent 829d1cc522
commit 254a05d2d4

View file

@ -14,7 +14,8 @@ class CategoryTagsTest(TestCase):
Return the rendered string or raise an exception.
"""
tpl = template.Template(template_string)
return tpl.render(context)
ctxt = template.Context(context)
return tpl.render(ctxt)
def testTooFewArguments(self):
"""