bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086)
https://github.com/python/cpython/commit/54f100514b02f6628450043e21ccfe39350... commit: 54f100514b02f6628450043e21ccfe39350d7ac7 branch: main author: Serhiy Storchaka <storchaka@gmail.com> committer: terryjreedy <tjreedy@udel.edu> date: 2021-08-31T13:32:01-04:00 summary: bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086) files: M Lib/idlelib/idle_test/test_macosx.py diff --git a/Lib/idlelib/idle_test/test_macosx.py b/Lib/idlelib/idle_test/test_macosx.py index b6bd922e4b99dd..19324773586896 100644 --- a/Lib/idlelib/idle_test/test_macosx.py +++ b/Lib/idlelib/idle_test/test_macosx.py @@ -34,7 +34,7 @@ def test_init_sets_tktype(self): 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)
participants (1)
-
terryjreedy