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/lib2to3/tests/test_fixers.py
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, python-dev, xdegaye
Priority: normal Keywords: patch

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

Files
File name Uploaded Description Edit
duplicate_test_name.patch xdegaye, 2013-09-28 16:52 review
Messages (2)
msg198531 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-28 16:52
There are 5 duplicate test names in this file.

$ ./python -m unittest Lib/lib2to3/tests/test_fixers.py
......................................................................
----------------------------------------------------------------------
Ran 451 tests in 8.770s

OK

With the patch applied:

$ ./python -m unittest Lib/lib2to3/tests/test_fixers.py
......................................................................
----------------------------------------------------------------------
Ran 456 tests in 8.810s

OK
msg198541 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-28 19:13
New changeset 39bb7421cb69 by Benjamin Peterson in branch '2.7':
fix duplicate test names (closes #19115)
http://hg.python.org/cpython/rev/39bb7421cb69

New changeset 6bf37e2cbe83 by Benjamin Peterson in branch '3.3':
fix duplicate test names (closes #19115)
http://hg.python.org/cpython/rev/6bf37e2cbe83

New changeset 9f1694c2d47f by Benjamin Peterson in branch 'default':
merge 3.3 (#19115)
http://hg.python.org/cpython/rev/9f1694c2d47f
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63314
2013-09-28 19:13:32python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg198541

resolution: fixed
stage: resolved
2013-09-28 16:52:57xdegayecreate