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 xdegaye
Recipients eric.araujo, tarek, xdegaye
Date 2013-09-28.16:37:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380386232.47.0.0199023087976.issue19114@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python -m unittest -v Lib/distutils/tests/test_cmd.py 2>&1 | grep test_ensure_string_list
test_ensure_string_list (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
$

And after renaming the first test_ensure_string_list to
test_ensure_string_list_1 and the second one to
test_ensure_string_list_2:

$ ./python -m unittest -v Lib/distutils/tests/test_cmd.py 2>&1 | grep test_ensure_string_list
test_ensure_string_list_1 (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
test_ensure_string_list_2 (Lib.distutils.tests.test_cmd.CommandTestCase) ... ok
$
History
Date User Action Args
2013-09-28 16:37:12xdegayesetrecipients: + xdegaye, tarek, eric.araujo
2013-09-28 16:37:12xdegayesetmessageid: <1380386232.47.0.0199023087976.issue19114@psf.upfronthosting.co.za>
2013-09-28 16:37:12xdegayelinkissue19114 messages
2013-09-28 16:37:12xdegayecreate