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 CliffM
Recipients CliffM, ethan.furman
Date 2013-10-14.08:53:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381740807.48.0.594318314007.issue19252@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry -- I could have been clearer :

The conditional:

 if member.value == value:

Is redundant as the tests stand.  If you comment it out -- everything works. So therefore we are missing a test.

The current test works, as red is the first value to pop out of the value() list.  

This makes the if-clause fragile for future maintenance.  So we need another test to ensure the loop is covered.

It's a coverage issue -- where although the code is executed by the test, and the code is correct, the test is not complete enough for the code.
History
Date User Action Args
2013-10-14 08:53:27CliffMsetrecipients: + CliffM, ethan.furman
2013-10-14 08:53:27CliffMsetmessageid: <1381740807.48.0.594318314007.issue19252@psf.upfronthosting.co.za>
2013-10-14 08:53:27CliffMlinkissue19252 messages
2013-10-14 08:53:27CliffMcreate