Fix finalize call
This commit is contained in:
parent
63b25304c3
commit
4dfe2eee94
|
@ -554,7 +554,7 @@ through the special :py:class:`request <FixtureRequest>` object::
|
||||||
def smtp_connection(request):
|
def smtp_connection(request):
|
||||||
smtp_connection = smtplib.SMTP(request.param, 587, timeout=5)
|
smtp_connection = smtplib.SMTP(request.param, 587, timeout=5)
|
||||||
yield smtp_connection
|
yield smtp_connection
|
||||||
print ("finalizing %s" % smtp)
|
print("finalizing %s" % smtp_connection)
|
||||||
smtp_connection.close()
|
smtp_connection.close()
|
||||||
|
|
||||||
The main change is the declaration of ``params`` with
|
The main change is the declaration of ``params`` with
|
||||||
|
|
Loading…
Reference in New Issue