mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Fix a typo in code module test (#130530)
This commit is contained in:
parent
ccb4ad9219
commit
56e337d32b
1 changed files with 2 additions and 2 deletions
|
|
@ -50,9 +50,9 @@ def test_ps2(self):
|
|||
self.infunc.side_effect = EOFError('Finished')
|
||||
self.console.interact()
|
||||
self.assertEqual(self.sysmod.ps2, '... ')
|
||||
self.sysmod.ps1 = 'custom2> '
|
||||
self.sysmod.ps2 = 'custom2> '
|
||||
self.console.interact()
|
||||
self.assertEqual(self.sysmod.ps1, 'custom2> ')
|
||||
self.assertEqual(self.sysmod.ps2, 'custom2> ')
|
||||
|
||||
def test_console_stderr(self):
|
||||
self.infunc.side_effect = ["'antioch'", "", EOFError('Finished')]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue