From 54f100514b02f6628450043e21ccfe39350d7ac7 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 31 Aug 2021 20:32:01 +0300 Subject: bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086) --- Lib/idlelib/idle_test/test_macosx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/idle_test/test_macosx.py b/Lib/idlelib/idle_test/test_macosx.py index b6bd922..1932477 100644 --- a/Lib/idlelib/idle_test/test_macosx.py +++ b/Lib/idlelib/idle_test/test_macosx.py @@ -34,7 +34,7 @@ class InitTktypeTest(unittest.TestCase): for platform, types in ('darwin', alltypes), ('other', nontypes): with self.subTest(platform=platform): macosx.platform = platform - macosx._tk_type == None + macosx._tk_type = None macosx._init_tk_type() self.assertIn(macosx._tk_type, types) -- cgit v0.12