gh-132515: de-duplicate test_dataclass_derived_generic_from_slotted_base (#132516)

This commit is contained in:
Bénédikt Tran 2025-04-14 17:06:38 +02:00 committed by GitHub
parent 4865c09cf3
commit 45c447bf91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3635,7 +3635,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
@ -3715,7 +3714,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: