mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
- Issue #17756: Fix test_code test when run from the installed location.
This commit is contained in:
parent
8cc67a1b42
commit
15bec9cb3f
@ -51,7 +51,7 @@ class TestInteractiveConsole(unittest.TestCase):
|
||||
self.infunc.side_effect = ["undefined", EOFError('Finished')]
|
||||
self.console.interact()
|
||||
for call in self.stderr.method_calls:
|
||||
if 'NameError:' in ''.join(call[1]):
|
||||
if 'NameError' in ''.join(call[1]):
|
||||
break
|
||||
else:
|
||||
raise AssertionError("No syntax error from console")
|
||||
|
Loading…
Reference in New Issue
Block a user