summaryrefslogtreecommitdiff
path: root/tests/bash_completion
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/bash_completion
parent8b2515a450ef376b9205029090af0a79c8341bd7 (diff)
downloaddjango-6e4c6281dbb7ee12bcdc22620894edb4e9cf623f.tar.gz
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda because try/except performs better.
Diffstat (limited to 'tests/bash_completion')
-rw-r--r--tests/bash_completion/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/bash_completion/tests.py b/tests/bash_completion/tests.py
index ba2a5ea773..1d35e1f28e 100644
--- a/tests/bash_completion/tests.py
+++ b/tests/bash_completion/tests.py
@@ -4,7 +4,6 @@ A series of tests to establish that the command-line bash completion works.
import os
import sys
import unittest
-from contextlib import suppress
from django.apps import apps
from django.core.management import ManagementUtility
@@ -51,8 +50,10 @@ class BashCompletionTests(unittest.TestCase):
def _run_autocomplete(self):
util = ManagementUtility(argv=sys.argv)
with captured_stdout() as stdout:
- with suppress(SystemExit):
+ try:
util.autocomplete()
+ except SystemExit:
+ pass
return stdout.getvalue().strip().split('\n')
def test_django_admin_py(self):