mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086)
This commit is contained in:
parent
51999c960e
commit
54f100514b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue