diff options
| author | Mads Jensen <mje@inducks.org> | 2017-03-09 16:17:41 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-06-28 14:07:55 -0400 |
| commit | 550cb3a365dee4edfdd1563224d5304de2a57fda (patch) | |
| tree | fb532f38774ff7619edd2a4532c3daae1ee0ac5a /tests/backends | |
| parent | 43a4835edf32c57eb74c0eb207c276734a34abcf (diff) | |
Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().
Diffstat (limited to 'tests/backends')
| -rw-r--r-- | tests/backends/tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 6d38625a98..30c1cbf86d 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -3,6 +3,7 @@ import datetime import threading import unittest import warnings +from contextlib import suppress from django.core.management.color import no_style from django.db import ( @@ -389,10 +390,8 @@ class BackendTestCase(TransactionTestCase): finally: # Clean up the mess created by connection._close(). Since the # connection is already closed, this crashes on some backends. - try: + with suppress(Exception): connection.close() - except Exception: - pass @override_settings(DEBUG=True) def test_queries(self): |
