Refs #32178 -- Changed BaseDatabaseFeatures.django_test_expected_failures to set().

This commit is contained in:
Hasan Ramezani 2020-12-11 07:24:10 +01:00 committed by GitHub
parent 45f4282149
commit 3f140dde51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 = {}