Explorar o código

Fixed #22184 -- Allowed template_tests.tests to be run isolated

Anubhav Joshi %!s(int64=11) %!d(string=hai) anos
pai
achega
659b5678fc
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      tests/template_tests/tests.py

+ 2 - 0
tests/template_tests/tests.py

@@ -641,6 +641,8 @@ class TemplateTests(TestCase):
     def get_template_tests(self):
         # SYNTAX --
         # 'template_name': ('template contents', 'context dict', 'expected string output' or Exception class)
+        # This import is necessary when tests are run isolated:
+        from .templatetags import custom
         basedir = os.path.dirname(os.path.abspath(upath(__file__)))
         tests = {
             ### BASIC SYNTAX ################################################