Issue #18410: add missing parent argument.

This commit is contained in:
Terry Jan Reedy 2016-05-17 18:35:07 -04:00
parent b236fe4515
commit c359af1530
1 changed files with 1 additions and 1 deletions

View File

@ -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):