summaryrefslogtreecommitdiff
path: root/tests/backends/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-09-07 08:16:21 -0400
committerGitHub <noreply@github.com>2017-09-07 08:16:21 -0400
commit6e4c6281dbb7ee12bcdc22620894edb4e9cf623f (patch)
tree1c21218d4b6f00c499f18943d5190ebe7b5248c9 /tests/backends/tests.py
parent8b2515a450ef376b9205029090af0a79c8341bd7 (diff)
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda because try/except performs better.
Diffstat (limited to 'tests/backends/tests.py')
-rw-r--r--tests/backends/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py
index 30c1cbf86d..6d38625a98 100644
--- a/tests/backends/tests.py
+++ b/tests/backends/tests.py
@@ -3,7 +3,6 @@ import datetime
import threading
import unittest
import warnings
-from contextlib import suppress
from django.core.management.color import no_style
from django.db import (
@@ -390,8 +389,10 @@ class BackendTestCase(TransactionTestCase):
finally:
# Clean up the mess created by connection._close(). Since the
# connection is already closed, this crashes on some backends.
- with suppress(Exception):
+ try:
connection.close()
+ except Exception:
+ pass
@override_settings(DEBUG=True)
def test_queries(self):