[Python-checkins] cpython (merge 3.4 -> default): (Merge 3.4) test_faulthandler: fix typo

victor.stinner python-checkins at python.org
Thu Sep 25 00:40:41 CEST 2014


https://hg.python.org/cpython/rev/2ba974365964
changeset:   92568:2ba974365964
parent:      92566:b18288f24501
parent:      92567:820dd1bbdbac
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Sep 25 00:39:17 2014 +0200
summary:
  (Merge 3.4) test_faulthandler: fix typo

files:
  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
--- a/Lib/test/test_faulthandler.py
+++ b/Lib/test/test_faulthandler.py
@@ -230,7 +230,7 @@
             """
         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)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list