From: Neal Norwitz Date: Fri, 31 May 2002 14:15:11 +0000 (+0000) Subject: Fix printing plural (s or ""). X-Git-Tag: v2.3c1~5547 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7616504dcf49d233d38a7518cdd28a9cc6531b74;p=thirdparty%2FPython%2Fcpython.git Fix printing plural (s or ""). --- diff --git a/Lib/unittest.py b/Lib/unittest.py index a97a962f7003..2523f431c40e 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py @@ -616,7 +616,7 @@ class TextTestRunner: self.stream.writeln(result.separator2) run = result.testsRun self.stream.writeln("Ran %d test%s in %.3fs" % - (run, run == 1 and "" or "s", timeTaken)) + (run, run != 1 and "s" or "", timeTaken)) self.stream.writeln() if not result.wasSuccessful(): self.stream.write("FAILED (")