Fix typo in exclude type checking test

This commit is contained in:
Vyacheslav Matyukhin 2019-12-30 02:12:50 +03:00
parent 7940a7b954
commit c139f82811
No known key found for this signature in database
GPG Key ID: 3D2A774C5489F96C

View File

@ -315,7 +315,7 @@ def test_django_objecttype_fields_exclude_type_checking():
class Reporter2(DjangoObjectType): class Reporter2(DjangoObjectType):
class Meta: class Meta:
model = ReporterModel model = ReporterModel
fields = "foo" exclude = "foo"
class TestDjangoObjectType: class TestDjangoObjectType: