Closed connection pool in clean up of test_allowed_database_copy_queries.

This commit is contained in:
suraj 2024-09-13 11:13:50 +02:00 committed by Sarah Boyce
parent 16af0c60ed
commit 8dd3f7d538
1 changed files with 2 additions and 0 deletions

View File

@ -2186,6 +2186,8 @@ class AllowedDatabaseQueriesTests(SimpleTestCase):
finally:
new_connection.validate_thread_sharing()
new_connection._close()
if hasattr(new_connection, "close_pool"):
new_connection.close_pool()
class DatabaseAliasTests(SimpleTestCase):