From: Guido van Rossum Date: Thu, 11 Jun 1998 22:25:59 +0000 (+0000) Subject: With the recent change that makes numbers compare smaller than anything, X-Git-Tag: v1.5.2a1~483 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69256612d721b8582c57f9669134366db98051b0;p=python With the recent change that makes numbers compare smaller than anything, the outcome of the test for max has changed. --- diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index 747fc9a4ac..5a3e833265 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -325,9 +325,9 @@ if map(None, Squares(10)) != [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]: if map(int, Squares(10)) != [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]: raise TestFailed, 'map(int, Squares(10))' if map(None, Squares(3), Squares(2)) != [(0,0), (1,1), (4,None)]: - raise TestFailed, 'map(None: x, Squares(3), Squares(2))' -if map(max, Squares(3), Squares(2)) != [0, 1, 4]: - raise TestFailed, 'map(None: x, Squares(3), Squares(2))' + raise TestFailed, 'map(None, Squares(3), Squares(2))' +if map(max, Squares(3), Squares(2)) != [0, 1, None]: + raise TestFailed, 'map(max, Squares(3), Squares(2))' print 'max' if max('123123') <> '3': raise TestFailed, 'max(\'123123\')'