mirror of
https://github.com/python/cpython.git
synced 2026-01-03 22:12:27 +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 @@ 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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue