summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-09-24 22:38:48 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-09-24 22:38:48 (GMT)
commit29001c831947340f2d54ab6c5073116e6ff7e1de (patch)
tree60dd2b597b6a915c69f3c6dd828cf40c55345d19 /Lib/test
parent8e069d5ce9b49c7dc1dc519e6b44320b1761fb4c (diff)
downloadcpython-29001c831947340f2d54ab6c5073116e6ff7e1de.zip
cpython-29001c831947340f2d54ab6c5073116e6ff7e1de.tar.gz
cpython-29001c831947340f2d54ab6c5073116e6ff7e1de.tar.bz2
test_faulthandler: fix typo
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_faulthandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py
index 41ccd1e..97dffd2 100644
--- a/Lib/test/test_faulthandler.py
+++ b/Lib/test/test_faulthandler.py
@@ -220,7 +220,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)