Fix typo in exclude type checking test (#841)

This commit is contained in:
Vyacheslav Matyukhin 2019-12-30 17:14:41 +03:00 committed by Jonathan Kim
parent 7940a7b954
commit f661cf8335

View File

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