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

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

Messages (2)
msg198539 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-28 18:56
$ ./python -m test -v test_complex | grep test_truediv
test_truediv (test.test_complex.ComplexTest) ... ok

After renaming the first test_truediv to test_truediv_1 and the second
one to test_truediv_2:

$ ./python -m test -v test_complex | grep test_truediv
test_truediv_1 (test.test_complex.ComplexTest) ... ok
test_truediv_2 (test.test_complex.ComplexTest) ... ok
msg198594 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 14:58
New changeset cddb3e1e5054 by Benjamin Peterson in branch '3.3':
combine two tests to avoid duplicate names (closes #19116)
http://hg.python.org/cpython/rev/cddb3e1e5054

New changeset d87ef944ddcc by Benjamin Peterson in branch 'default':
merge 3.3 (#19116)
http://hg.python.org/cpython/rev/d87ef944ddcc
History
Date User Action Args
2022-04-11 14:57:51adminsetgithub: 63315
2013-09-29 14:58:38python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg198594

resolution: fixed
stage: resolved
2013-09-28 18:56:06xdegayecreate