From b94120c053df5a42b841d68aa87ad0681848f27e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 10 Feb 2003 20:48:19 +0000 Subject: [PATCH] Backport 1.16: Fix printing plural (s or ""). --- Lib/unittest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (") -- 2.47.3