From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 14 Apr 2025 15:29:20 +0000 (+0200) Subject: [3.13] gh-132515: de-duplicate `test_dataclass_derived_generic_from_slotted_base... X-Git-Tag: v3.13.4~276 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a50aa3325b2df379355f1bf7f01b199cc553c708;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-132515: de-duplicate `test_dataclass_derived_generic_from_slotted_base` (GH-132516) (#132518) gh-132515: de-duplicate `test_dataclass_derived_generic_from_slotted_base` (GH-132516) (cherry picked from commit 45c447bf91ffabe4c0ba6d18f37d4e58925d5c91) Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> --- diff --git a/Lib/test/test_dataclasses/__init__.py b/Lib/test/test_dataclasses/__init__.py index 876dbc773285..9065b9d773c3 100644 --- a/Lib/test/test_dataclasses/__init__.py +++ b/Lib/test/test_dataclasses/__init__.py @@ -3590,7 +3590,6 @@ class TestSlots(unittest.TestCase): a_ref = weakref.ref(a) self.assertIs(a.__weakref__, a_ref) - def test_dataclass_derived_weakref_slot(self): class A: pass @@ -3670,7 +3669,7 @@ class TestSlots(unittest.TestCase): self.assertTrue(F.__weakref__) F() - def test_dataclass_derived_generic_from_slotted_base(self): + def test_dataclass_derived_generic_from_slotted_base_with_weakref(self): T = typing.TypeVar('T') class WithWeakrefSlot: