summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_exceptions.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-02-25 11:03:30 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-02-25 19:53:01 +0100
commit068952d69491f348052f4093002164c1b22f4b17 (patch)
tree76bd7e86f954b44f8ba5079a31f22e985b012a58 /tests/template_tests/syntax_tests/test_exceptions.py
parent8fe63dc4cd637c1422a9bf3e3421d64388e14afd (diff)
[2.1.x] Fixed relative paths imports per isort 4.3.5.
Backport of 463fe11bc8b2d068e447c5df677e7a31c2af7e03 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 db1e0f9f5f..e3645cb13f 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 ..utils import setup
from .test_extends import inheritance_templates
+from ..utils import setup
class ExceptionsTests(SimpleTestCase):