From a1fb4c891f84989345b0967236954da1c6a94f34 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 15 Feb 2005 15:22:37 +0000 Subject: [PATCH] Exceedingly minor tweak. --- Lib/test/test_tempfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index d5ae5de86f0..e274c5b3383 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -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