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.

classification
Title: duplicate test names in Lib/distutils/tests/test_cmd.py
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, python-dev, tarek, xdegaye
Priority: normal Keywords:

Created on 2013-09-28 16:37 by xdegaye, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg198530 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-28 16:37
$ ./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
$
msg198596 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 15:14
New changeset 9d4d9e945f29 by Benjamin Peterson in branch '3.3':
condense two tests with the same name (closes #19114)
http://hg.python.org/cpython/rev/9d4d9e945f29

New changeset 61ae31665ee1 by Benjamin Peterson in branch '2.7':
condense two tests with the same name (closes #19114)
http://hg.python.org/cpython/rev/61ae31665ee1

New changeset 0a5ce192ba8a by Benjamin Peterson in branch 'default':
merge 3.3 (#19114)
http://hg.python.org/cpython/rev/0a5ce192ba8a
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63313
2013-09-29 15:14:00python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg198596

resolution: fixed
stage: resolved
2013-09-28 16:37:12xdegayecreate