Skip to content

Commit 7a88c34

Browse files
authored
Update error message in test for file reload
1 parent c10c5b9 commit 7a88c34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/idlelib/idle_test/test_iomenu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def mock_showinfo(*args, **kwargs):
7979
result = io.reload(None)
8080
self.assertEqual(result, "break")
8181
self.assertEqual(len(showinfo_called), 1)
82-
self.assertIn("No File", showinfo_called[0][0])
82+
self.assertIn("File Not Found", showinfo_called[0][0])
8383
finally:
8484
iomenu.messagebox.showinfo = orig_showinfo
8585

0 commit comments

Comments
 (0)