Issue 19125: duplicate test name in Lib/test/test_smtplib.py

Created on 2013-09-29 11:18 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 11:18 review
Messages (2)
msg198582 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2013-09-29 11:18
Duplicate method names:
./Lib/test/test_smtplib.py:249 DebuggingServerTests.testNotImplemented

Attached patch fixes this: the first method has been renamed to
testEHLO since the channel_class of the DebuggingServer is
SMTPChannel, and SMTPChannel does support EHLO.
msg198590 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-29 14:47
New changeset f501475d88de by Benjamin Peterson in branch '3.3':
fix test to run and test that smtpd does support ELHO (closes #19125)
http://hg.python.org/cpython/rev/f501475d88de

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

nosy: + python-dev
messages: + msg198590

resolution: fixed
stage: resolved

2013-09-29 11:18:58xdegayecreate