Raymond Hettinger <rhettin...@users.sourceforge.net> added the comment:

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)

----------
nosy: +rhettinger

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10675>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to