From 01e80b45d6f2d2b2eac5e81731c3af80f09214c2 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Fri, 11 Jun 2004 15:57:49 +0000 Subject: [PATCH] fix a poorly worded error message --- Lib/test/test_timeout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py index c0e1b13aac3..de6aec453d8 100644 --- a/Lib/test/test_timeout.py +++ b/Lib/test/test_timeout.py @@ -118,7 +118,7 @@ def testConnectTimeout(self): _delta = abs(_t1 - _t2) self.assert_(_delta < _timeout + self.fuzz, - "timeout (%g) is %g seconds more than expected (%g)" + "timeout (%g) is more than %g seconds more than expected (%g)" %(_delta, self.fuzz, _timeout)) def testRecvTimeout(self):