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 iritkatriel
Recipients iritkatriel, rbcollins
Date 2021-12-16.09:46:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639648015.91.0.166623503977.issue22815@roundup.psfhosted.org>
In-reply-to
Content
In verbose mode we do get output like the one in the code.google issue:

% cat tmp.py

import unittest

class TestStringMethods(unittest.TestCase):

    @unittest.expectedFailure
    def test_upper(self):
        self.assertEqual(2, 2)

    def test_lower(self):
        return

if __name__ == '__main__':
    unittest.main()

% ./python.exe -m tmp -v
test_lower (__main__.TestStringMethods) ... ok
test_upper (__main__.TestStringMethods) ... unexpected success
History
Date User Action Args
2021-12-16 09:46:55iritkatrielsetrecipients: + iritkatriel, rbcollins
2021-12-16 09:46:55iritkatrielsetmessageid: <1639648015.91.0.166623503977.issue22815@roundup.psfhosted.org>
2021-12-16 09:46:55iritkatriellinkissue22815 messages
2021-12-16 09:46:55iritkatrielcreate