From f5772de69679efb54129ac1cbca3579b512778af Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 17 Jan 2025 22:09:56 +0100 Subject: Fixed #36005 -- Dropped support for Python 3.10 and 3.11. --- tests/test_utils/tests.py | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'tests/test_utils') diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py index 359cf07402..16692500e3 100644 --- a/tests/test_utils/tests.py +++ b/tests/test_utils/tests.py @@ -49,7 +49,6 @@ from django.test.utils import ( ) from django.urls import NoReverseMatch, path, reverse, reverse_lazy from django.utils.html import VOID_ELEMENTS -from django.utils.version import PY311 from .models import Car, Person, PossessedCar from .views import empty_response @@ -103,11 +102,9 @@ class SkippingTestCase(SimpleTestCase): SkipTestCase("test_foo").test_foo, ValueError, "skipUnlessDBFeature cannot be used on test_foo (test_utils.tests." - "SkippingTestCase.test_skip_unless_db_feature..SkipTestCase%s) " - "as SkippingTestCase.test_skip_unless_db_feature..SkipTestCase " - "doesn't allow queries against the 'default' database." - # Python 3.11 uses fully qualified test name in the output. - % (".test_foo" if PY311 else ""), + "SkippingTestCase.test_skip_unless_db_feature..SkipTestCase." + "test_foo) as SkippingTestCase.test_skip_unless_db_feature.." + "SkipTestCase doesn't allow queries against the 'default' database.", ) def test_skip_if_db_feature(self): @@ -150,11 +147,9 @@ class SkippingTestCase(SimpleTestCase): SkipTestCase("test_foo").test_foo, ValueError, "skipIfDBFeature cannot be used on test_foo (test_utils.tests." - "SkippingTestCase.test_skip_if_db_feature..SkipTestCase%s) " + "SkippingTestCase.test_skip_if_db_feature..SkipTestCase.test_foo) " "as SkippingTestCase.test_skip_if_db_feature..SkipTestCase " - "doesn't allow queries against the 'default' database." - # Python 3.11 uses fully qualified test name in the output. - % (".test_foo" if PY311 else ""), + "doesn't allow queries against the 'default' database.", ) -- cgit v1.3