From 961360923e7997a04833652623ea549b0dc02262 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Sat, 21 Jul 2018 22:46:26 +0300 Subject: [PATCH] bpo-34181: Fix running Lib/test/test_typing.py as a script. (GH-8380) --- 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 904cd93691a..6d8cc5319fb 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')