From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 8 Jan 2025 11:43:16 +0000 (+0100) Subject: [3.13] gh-128617: Fix `test_typing.test_readonly_inheritance` (GH-128618) (#128622) X-Git-Tag: v3.13.2~128 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0ba0bc54760261f85ec9c646b5af4340348c6f1;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-128617: Fix `test_typing.test_readonly_inheritance` (GH-128618) (#128622) gh-128617: Fix `test_typing.test_readonly_inheritance` (GH-128618) (cherry picked from commit 971a52b5495e3d596e599faa1f31d4671897026d) Co-authored-by: sobolevn --- diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index 6375d359e72a..f32bb31280a8 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -8829,13 +8829,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):