mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
(Merge 3.4) test_faulthandler: fix typo
This commit is contained in:
commit
3e4a80a2e1
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ class FaultHandlerTests(unittest.TestCase):
|
|||
"""
|
||||
not_expected = 'Fatal Python error'
|
||||
stderr, exitcode = self.get_output(code)
|
||||
stder = '\n'.join(stderr)
|
||||
stderr = '\n'.join(stderr)
|
||||
self.assertTrue(not_expected not in stderr,
|
||||
"%r is present in %r" % (not_expected, stderr))
|
||||
self.assertNotEqual(exitcode, 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue