summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-11-18 21:50:52 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-11-19 21:35:39 +0100
commita97e72aaabd1d065d49f909be20f0f3367a346d4 (patch)
tree7fbf83ca74b2a45816503c49e0c13131c7fd1c98 /tests
parente23240474b4c7d630a4224a558f2e47a4b957cd1 (diff)
Simplified caching of templatetags modules.
Diffstat (limited to 'tests')
-rw-r--r--tests/template_tests/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py
index b8097fbde1..80d7b727d6 100644
--- a/tests/template_tests/tests.py
+++ b/tests/template_tests/tests.py
@@ -1855,11 +1855,6 @@ class TemplateTagLoading(TestCase):
def setUp(self):
self.egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
- self.old_tag_modules = template_base.templatetags_modules
- template_base.templatetags_modules = []
-
- def tearDown(self):
- template_base.templatetags_modules = self.old_tag_modules
def test_load_error(self):
ttext = "{% load broken_tag %}"