summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/i18n
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:37:25 +0100
commit1999c0a00aec9736a58a235d90c9ef5a6f9cff34 (patch)
treeef4221911cef447e3dc0613851fcd5f28570b39e /tests/template_tests/syntax_tests/i18n
parent4fd6e09fdce02c00dfbde9d45a815e9d93060756 (diff)
[2.1.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/i18n')
-rw-r--r--tests/template_tests/syntax_tests/i18n/test_blocktrans.py2
-rw-r--r--tests/template_tests/syntax_tests/i18n/test_trans.py2
-rw-r--r--tests/template_tests/syntax_tests/i18n/test_underscore_syntax.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/template_tests/syntax_tests/i18n/test_blocktrans.py b/tests/template_tests/syntax_tests/i18n/test_blocktrans.py
index da4f876063..ac8fc16da8 100644
--- a/tests/template_tests/syntax_tests/i18n/test_blocktrans.py
+++ b/tests/template_tests/syntax_tests/i18n/test_blocktrans.py
@@ -7,8 +7,8 @@ from django.utils import translation
from django.utils.safestring import mark_safe
from django.utils.translation import trans_real
-from .base import MultipleLocaleActivationTestCase, extended_locale_paths, here
from ...utils import setup
+from .base import MultipleLocaleActivationTestCase, extended_locale_paths, here
class I18nBlockTransTagTests(SimpleTestCase):
diff --git a/tests/template_tests/syntax_tests/i18n/test_trans.py b/tests/template_tests/syntax_tests/i18n/test_trans.py
index e3d8963c7f..ba5021a5d5 100644
--- a/tests/template_tests/syntax_tests/i18n/test_trans.py
+++ b/tests/template_tests/syntax_tests/i18n/test_trans.py
@@ -7,8 +7,8 @@ from django.utils import translation
from django.utils.safestring import mark_safe
from django.utils.translation import trans_real
-from .base import MultipleLocaleActivationTestCase, extended_locale_paths
from ...utils import setup
+from .base import MultipleLocaleActivationTestCase, extended_locale_paths
class I18nTransTagTests(SimpleTestCase):
diff --git a/tests/template_tests/syntax_tests/i18n/test_underscore_syntax.py b/tests/template_tests/syntax_tests/i18n/test_underscore_syntax.py
index c422122ef1..38d929e214 100644
--- a/tests/template_tests/syntax_tests/i18n/test_underscore_syntax.py
+++ b/tests/template_tests/syntax_tests/i18n/test_underscore_syntax.py
@@ -2,8 +2,8 @@ from django.template import Context, Template
from django.test import SimpleTestCase
from django.utils import translation
-from .base import MultipleLocaleActivationTestCase
from ...utils import setup
+from .base import MultipleLocaleActivationTestCase
class MultipleLocaleActivationTests(MultipleLocaleActivationTestCase):