This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dmalcolm
Recipients dmalcolm
Date 2010-08-16.19:44:24
SpamBayes Score 4.3179507e-06
Marked as misclassified No
Message-id <1281987867.95.0.832612777786.issue9623@psf.upfronthosting.co.za>
In-reply-to
Content
test_site.py has a couple of assertions of the form

  self.assertTrue(len(foo), some number)

which appear to be incorrect, and should read:

  self.assertEqual(len(foo), some number)

or assertEquals (that file uses both methods).

r76047 fixed some of these, but a couple remain (introduced in r74526) in both 2.7 branch and py3k.  Patch attached (for 2.7 branch)
History
Date User Action Args
2010-08-16 19:44:28dmalcolmsetrecipients: + dmalcolm
2010-08-16 19:44:27dmalcolmsetmessageid: <1281987867.95.0.832612777786.issue9623@psf.upfronthosting.co.za>
2010-08-16 19:44:24dmalcolmlinkissue9623 messages
2010-08-16 19:44:24dmalcolmcreate