diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-10-03 10:52:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-03 10:52:21 +0200 |
| commit | f71b0cf769d9ac582ee3d1a8c33d73dad3a770da (patch) | |
| tree | 141b3548ae86b6929a261741d89ff1c252a3c879 /tests/check_framework | |
| parent | 3b4a5b9f97f113ca5151cff744019e39a1ed7475 (diff) | |
| download | django-f71b0cf769d9ac582ee3d1a8c33d73dad3a770da.tar.gz | |
Refs #32987 -- Relaxed system check for template tag modules with the same name by turning into a warning.
Thanks Claude Paroz for the report.
Regression in 004b4620f6f4ad87261e149898940f2dcd5757ef.
Diffstat (limited to 'tests/check_framework')
| -rw-r--r-- | tests/check_framework/test_templates.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/check_framework/test_templates.py b/tests/check_framework/test_templates.py index 439097f1e1..c8a2f83b8a 100644 --- a/tests/check_framework/test_templates.py +++ b/tests/check_framework/test_templates.py @@ -1,10 +1,10 @@ from copy import copy, deepcopy -from django.core.checks import Error +from django.core.checks import Warning from django.core.checks.templates import ( E001, E002, - E003, + W003, check_for_template_tags_with_the_same_name, check_setting_app_dirs_loaders, check_string_if_invalid_is_string, @@ -108,15 +108,15 @@ class CheckTemplateTagLibrariesWithSameName(SimpleTestCase): @classmethod def setUpClass(cls): super().setUpClass() - cls.error_same_tags = Error( - E003.msg.format( + cls.warning_same_tags = Warning( + W003.msg.format( "'same_tags'", "'check_framework.template_test_apps.same_tags_app_1." "templatetags.same_tags', " "'check_framework.template_test_apps.same_tags_app_2." "templatetags.same_tags'", ), - id=E003.id, + id=W003.id, ) @staticmethod @@ -139,7 +139,7 @@ class CheckTemplateTagLibrariesWithSameName(SimpleTestCase): def test_template_tags_with_same_name(self): self.assertEqual( check_for_template_tags_with_the_same_name(None), - [self.error_same_tags], + [self.warning_same_tags], ) def test_template_tags_with_same_library_name(self): @@ -155,7 +155,7 @@ class CheckTemplateTagLibrariesWithSameName(SimpleTestCase): ): self.assertEqual( check_for_template_tags_with_the_same_name(None), - [self.error_same_tags], + [self.warning_same_tags], ) @override_settings( @@ -186,15 +186,15 @@ class CheckTemplateTagLibrariesWithSameName(SimpleTestCase): self.assertEqual( check_for_template_tags_with_the_same_name(None), [ - Error( - E003.msg.format( + Warning( + W003.msg.format( "'same_tags'", "'check_framework.template_test_apps.different_tags_app." "templatetags.different_tags', " "'check_framework.template_test_apps.same_tags_app_1." "templatetags.same_tags'", ), - id=E003.id, + id=W003.id, ) ], ) |
