diff options
| author | Hasan Ramezani <hasan.r67@gmail.com> | 2020-12-11 07:24:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-11 07:24:10 +0100 |
| commit | 3f140dde51c0fe6c350acb7727bbe489a99f0632 (patch) | |
| tree | 173b40b47a35a15e7a1146f02d613840547c666e | |
| parent | 45f4282149e13a2c1548a579f60d098e397a33d7 (diff) | |
Refs #32178 -- Changed BaseDatabaseFeatures.django_test_expected_failures to set().
| -rw-r--r-- | django/db/backends/base/features.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = {} |
