summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:26 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:26 (GMT)
commit5283c4e108bf541ab43cb89e58745f20b4d559b4 (patch)
tree3ebd31118d205b09c513d50c4a5bcf71ea9671ca /Lib/idlelib/idle_test
parent5d0d2e6ed6b6ca99d7aa1f9a5ff9c4b0fa545f76 (diff)
downloadcpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.zip
cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.gz
cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.bz2
Issue #18592: Method return signature changes made to SearchDialogBase for
test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r--Lib/idlelib/idle_test/test_searchdialogbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_searchdialogbase.py b/Lib/idlelib/idle_test/test_searchdialogbase.py
index e918399..eccdd47 100644
--- a/Lib/idlelib/idle_test/test_searchdialogbase.py
+++ b/Lib/idlelib/idle_test/test_searchdialogbase.py
@@ -75,7 +75,7 @@ class SearchDialogBaseTest(unittest.TestCase):
equal = self.assertEqual
self.dialog.row = 0
self.dialog.top = Toplevel(self.root)
- label, entry = self.dialog.make_entry("Test:", 'hello')
+ entry, label = self.dialog.make_entry("Test:", 'hello')
equal(label['text'], 'Test:')
self.assertIn(entry.get(), 'hello')