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 name in Lib/test/test_regrtest.py
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, michael.foord, pitrou, python-dev, xdegaye
Priority: normal Keywords: patch

Created on 2013-09-29 10:24 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-29 10:24 review
Messages (4)
msg198577 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-29 10:24
Duplicate method names:
./Lib/test/test_regrtest.py:210 ParseArgsTestCase.test_findleaks

Attached patch fixes it.
msg198589 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 14:47
New changeset 39f9adc8ad5b by Benjamin Peterson in branch 'default':
delete duplicate test (closes #19123)
http://hg.python.org/cpython/rev/39f9adc8ad5b
msg198629 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-29 19:12
After the last changeset 39f9adc8ad5b there are still 3 methods named
test_findleaks. The proposed patch was also missing one of them.
msg198630 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 19:18
New changeset 280d403434c4 by Benjamin Peterson in branch 'default':
rename some more tests to avoid duplicate names (#19123)
http://hg.python.org/cpython/rev/280d403434c4
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63322
2013-09-29 19:18:51python-devsetmessages: + msg198630
2013-09-29 19:12:05xdegayesetmessages: + msg198629
2013-09-29 14:47:15python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg198589

resolution: fixed
stage: resolved
2013-09-29 10:24:06xdegayecreate