Skip to content

Commit 8032414

Browse files
committed
name
1 parent ed27322 commit 8032414

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test_typing_extensions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7804,7 +7804,7 @@ class A(Generic[T, P, U]): ...
78047804
self.assertEqual(A[float, [range], int].__args__, (float, (range,), int))
78057805

78067806

7807-
class TypedDictSentinelMixin:
7807+
class SentinelTestsMixin:
78087808
@skip_if_py313_beta_1
78097809
def test_pickling(self):
78107810
for proto in range(pickle.HIGHEST_PROTOCOL + 1):
@@ -7839,7 +7839,7 @@ def test_immutable(self):
78397839
type(self.sentinel_type).foo
78407840

78417841

7842-
class NoDefaultTests(TypedDictSentinelMixin, BaseTestCase):
7842+
class NoDefaultTests(SentinelTestsMixin, BaseTestCase):
78437843
sentinel_type = NoDefault
78447844

78457845
def test_repr(self):
@@ -7850,7 +7850,7 @@ def test_repr(self):
78507850
self.assertEqual(repr(NoDefault), f"{mod_name}.NoDefault")
78517851

78527852

7853-
class NoExtraItemsTests(TypedDictSentinelMixin, BaseTestCase):
7853+
class NoExtraItemsTests(SentinelTestsMixin, BaseTestCase):
78547854
sentinel_type = NoExtraItems
78557855

78567856
def test_repr(self):

0 commit comments

Comments
 (0)