[3.12] gh-111724: Fix doctest ResourceWarning in howto/descriptor.rst (GH-111725) (#111727)

gh-111724: Fix doctest `ResourceWarning` in `howto/descriptor.rst` (GH-111725)

Close database connection explicitly in test cleanup.
(cherry picked from commit f48e669504)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
Miss Islington (bot) 2023-11-04 20:55:55 +01:00 committed by GitHub
parent cd778b4917
commit 9c583f36d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -943,6 +943,10 @@ it can be updated:
>>> Movie('Star Wars').director
'J.J. Abrams'
.. testcleanup::
conn.close()
Pure Python Equivalents
^^^^^^^^^^^^^^^^^^^^^^^