mirror of https://github.com/django/django.git
Refs #32178 -- Changed BaseDatabaseFeatures.django_test_expected_failures to set().
This commit is contained in:
parent
45f4282149
commit
3f140dde51
|
@ -325,7 +325,7 @@ class BaseDatabaseFeatures:
|
||||||
|
|
||||||
# A set of dotted paths to tests in Django's test suite that are expected
|
# A set of dotted paths to tests in Django's test suite that are expected
|
||||||
# to fail on this database.
|
# 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
|
# A map of reasons to sets of dotted paths to tests in Django's test suite
|
||||||
# that should be skipped for this database.
|
# that should be skipped for this database.
|
||||||
django_test_skips = {}
|
django_test_skips = {}
|
||||||
|
|
Loading…
Reference in New Issue