From 81f85d09f4cc83fc35452afcca75baaf64831b22 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 22 Jul 2018 03:41:41 -0700 Subject: bpo-34181: Fix running Lib/test/test_typing.py as a script. (GH-8380) (GH-8385) (cherry picked from commit 961360923e7997a04833652623ea549b0dc02262) Co-authored-by: Serhiy Storchaka --- Lib/test/test_typing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index 904cd93..6d8cc53 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -651,9 +651,9 @@ class GenericTests(BaseTestCase): def test_repr(self): self.assertEqual(repr(SimpleMapping), - "") + f"") self.assertEqual(repr(MySimpleMapping), - "") + f"") def test_chain_repr(self): T = TypeVar('T') -- cgit v0.12