1
0
mirror of https://github.com/django/django.git synced 2025-04-05 05:56:42 +00:00

Refs #31169 -- Prevented infinite loop in tests on failures.

Regression in ae91ecf6a1037fb67d14841b66ac19d4c2ccc4ac.
This commit is contained in:
Mariusz Felisiak 2022-03-04 11:21:05 +01:00 committed by GitHub
parent a46bc327e7
commit 795da6306a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -377,5 +377,4 @@ class BaseDatabaseCreation:
# connection.settings_dict = settings_dict, new threads would connect
# to the default database instead of the appropriate clone.
self.connection.settings_dict.update(settings_dict)
self.mark_expected_failures_and_skips()
self.connection.close()