diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-09-24 22:39:17 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-09-24 22:39:17 (GMT) |
commit | 3e4a80a2e185ac7420464ee1826da4ff0603367d (patch) | |
tree | 340bbe2e221d58751732bc06d9aad05237901784 /Lib/test | |
parent | f7248257ac0c7a7b8427837b86d68e534cfe432d (diff) | |
parent | 29001c831947340f2d54ab6c5073116e6ff7e1de (diff) | |
download | cpython-3e4a80a2e185ac7420464ee1826da4ff0603367d.zip cpython-3e4a80a2e185ac7420464ee1826da4ff0603367d.tar.gz cpython-3e4a80a2e185ac7420464ee1826da4ff0603367d.tar.bz2 |
(Merge 3.4) test_faulthandler: fix typo
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_faulthandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py index a79afd8..ccdf3b6 100644 --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -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) |