Skip to content

Commit 29001c8

Browse files
committed
test_faulthandler: fix typo
1 parent 8e069d5 commit 29001c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_faulthandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test_disable(self):
220220
"""
221221
not_expected = 'Fatal Python error'
222222
stderr, exitcode = self.get_output(code)
223-
stder = '\n'.join(stderr)
223+
stderr = '\n'.join(stderr)
224224
self.assertTrue(not_expected not in stderr,
225225
"%r is present in %r" % (not_expected, stderr))
226226
self.assertNotEqual(exitcode, 0)

0 commit comments

Comments
 (0)