summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_array.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/postgres_tests/test_array.py')
-rw-r--r--tests/postgres_tests/test_array.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py
index 7378b5c12d..e2e4ccdeb2 100644
--- a/tests/postgres_tests/test_array.py
+++ b/tests/postgres_tests/test_array.py
@@ -2,7 +2,6 @@ import decimal
import json
import unittest
import uuid
-from contextlib import suppress
from django import forms
from django.core import exceptions, serializers, validators
@@ -20,11 +19,13 @@ from .models import (
PostgreSQLModel, Tag,
)
-with suppress(ImportError):
+try:
from django.contrib.postgres.fields import ArrayField
from django.contrib.postgres.forms import (
SimpleArrayField, SplitArrayField, SplitArrayWidget,
)
+except ImportError:
+ pass
class TestSaveLoad(PostgreSQLTestCase):