summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_exceptions.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-03 19:33:48 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-03-03 19:35:37 +0100
commitcf903c4c0b76f4703957c25dd4366658cf976143 (patch)
treea1d403f23bd09a57218ba321b8f68613d19a2ef0 /tests/template_tests/syntax_tests/test_exceptions.py
parent18211d0a4d1d7e3cc7c4d3f2c154b4656b69600c (diff)
[2.2.x] Reverted "Fixed relative paths imports per isort 4.3.5."
This reverts commit 463fe11bc8b2d068e447c5df677e7a31c2af7e03 due to restore of relative paths sorting from isort < 4.3.5 in isort 4.3.10. Backport of b435f82939edf70674856e0e1cd63973c2e0a1d1 from master
Diffstat (limited to 'tests/template_tests/syntax_tests/test_exceptions.py')
-rw-r--r--tests/template_tests/syntax_tests/test_exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template_tests/syntax_tests/test_exceptions.py b/tests/template_tests/syntax_tests/test_exceptions.py
index e3645cb13f..db1e0f9f5f 100644
--- a/tests/template_tests/syntax_tests/test_exceptions.py
+++ b/tests/template_tests/syntax_tests/test_exceptions.py
@@ -1,8 +1,8 @@
from django.template import TemplateDoesNotExist, TemplateSyntaxError
from django.test import SimpleTestCase
-from .test_extends import inheritance_templates
from ..utils import setup
+from .test_extends import inheritance_templates
class ExceptionsTests(SimpleTestCase):