mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #18410: add missing parent argument.
This commit is contained in:
parent
b236fe4515
commit
c359af1530
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class SearchDialogTest(unittest.TestCase):
|
|||
def setUp(self):
|
||||
self.engine = se.SearchEngine(self.root)
|
||||
self.dialog = sd.SearchDialog(self.root, self.engine)
|
||||
self.text = tk.Text()
|
||||
self.text = tk.Text(self.root)
|
||||
self.text.insert('1.0', 'Hello World!')
|
||||
|
||||
def test_find_again(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue