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 rhettinger
Recipients Jay.Moorthi, michael.foord, r.david.murray, rhettinger
Date 2010-12-10.21:01:40
SpamBayes Score 5.4007655e-06
Marked as misclassified No
Message-id <1292014902.29.0.742402633865.issue10675@psf.upfronthosting.co.za>
In-reply-to
Content
I concur with David Murray.  Usually you care about the specific value changed to, not whether it changed at all.  The changed-by variant is even more specialized and you're better of using assertEqual since you know what the new value is supposed to be:

  assertEqual(thing.attr, x)
     ...
  assertEqual(thing.attr, x+by)
History
Date User Action Args
2010-12-10 21:01:42rhettingersetrecipients: + rhettinger, r.david.murray, michael.foord, Jay.Moorthi
2010-12-10 21:01:42rhettingersetmessageid: <1292014902.29.0.742402633865.issue10675@psf.upfronthosting.co.za>
2010-12-10 21:01:40rhettingerlinkissue10675 messages
2010-12-10 21:01:40rhettingercreate