Commit a1fb4c89 authored by Michael W. Hudson's avatar Michael W. Hudson

Exceedingly minor tweak.

parent 69bf13f1
......@@ -307,7 +307,7 @@ class test__mkstemp_inner(TC):
retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
self.failIf(retval < 0,
"child process caught fatal signal %d" % -retval)
self.failIf(retval > 0, "child process reports failure")
self.failIf(retval > 0, "child process reports failure %d"%retval)
def test_textmode(self):
# _mkstemp_inner can create files in text mode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment