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 louielu
Recipients eric.smith, louielu
Date 2017-06-14.12:41:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497444094.27.0.991767384595.issue30664@psf.upfronthosting.co.za>
In-reply-to
Content
I think the question will be, when using multiple subTest (this is why using ChainMap I think), how to determine their order?:

    with self.subTest(c=i, b=i, a=i):
        with self.subTest(b=i, c=50, a=60):
	    self.assertEqual(i, 2)


>>> FAIL: test_foo (__main__.Test) (a=60, b=4, c=50)
History
Date User Action Args
2017-06-14 12:41:34louielusetrecipients: + louielu, eric.smith
2017-06-14 12:41:34louielusetmessageid: <1497444094.27.0.991767384595.issue30664@psf.upfronthosting.co.za>
2017-06-14 12:41:34louielulinkissue30664 messages
2017-06-14 12:41:34louielucreate