From: sobolevn Date: Wed, 8 Jan 2025 11:19:41 +0000 (+0300) Subject: gh-128617: Fix `test_typing.test_readonly_inheritance` (#128618) X-Git-Tag: v3.14.0a4~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=971a52b5495e3d596e599faa1f31d4671897026d;p=thirdparty%2FPython%2Fcpython.git gh-128617: Fix `test_typing.test_readonly_inheritance` (#128618) --- diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index ef3cfc951708..0bb9ada221e9 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -8912,13 +8912,13 @@ class TypedDictTests(BaseTestCase): self.assertEqual(Child1.__mutable_keys__, frozenset({'b'})) class Base2(TypedDict): - a: ReadOnly[int] + a: int class Child2(Base2): - b: str + b: ReadOnly[str] - self.assertEqual(Child1.__readonly_keys__, frozenset({'a'})) - self.assertEqual(Child1.__mutable_keys__, frozenset({'b'})) + self.assertEqual(Child2.__readonly_keys__, frozenset({'b'})) + self.assertEqual(Child2.__mutable_keys__, frozenset({'a'})) def test_cannot_make_mutable_key_readonly(self): class Base(TypedDict):