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 michael.foord
Recipients michael.foord
Date 2010-11-27.15:16:36
SpamBayes Score 0.0002821586
Marked as misclassified No
Message-id <1290870998.37.0.268172055445.issue10548@psf.upfronthosting.co.za>
In-reply-to
Content
Reported by Konrad Delong.

class MyTest(unittest.TestCase):
    def setUp(self):
        raise Exception
    @unittest.expectedFailure
    def testSomething(self):
        assert False, "test method failed"




This code will report error, not expected failure.
History
Date User Action Args
2010-11-27 15:16:38michael.foordsetrecipients: + michael.foord
2010-11-27 15:16:38michael.foordsetmessageid: <1290870998.37.0.268172055445.issue10548@psf.upfronthosting.co.za>
2010-11-27 15:16:36michael.foordlinkissue10548 messages
2010-11-27 15:16:36michael.foordcreate