From 3f140dde51c0fe6c350acb7727bbe489a99f0632 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Fri, 11 Dec 2020 07:24:10 +0100 Subject: [PATCH] Refs #32178 -- Changed BaseDatabaseFeatures.django_test_expected_failures to set(). --- django/db/backends/base/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 885033361a..42eb59c969 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -325,7 +325,7 @@ class BaseDatabaseFeatures: # A set of dotted paths to tests in Django's test suite that are expected # to fail on this database. - django_test_expected_failures = {} + django_test_expected_failures = set() # A map of reasons to sets of dotted paths to tests in Django's test suite # that should be skipped for this database. django_test_skips = {}