From f661cf83355fb41e78625ecaae857fc4a609be13 Mon Sep 17 00:00:00 2001 From: Vyacheslav Matyukhin Date: Mon, 30 Dec 2019 17:14:41 +0300 Subject: [PATCH] Fix typo in exclude type checking test (#841) --- graphene_django/tests/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/tests/test_types.py b/graphene_django/tests/test_types.py index 5e9d1c2..5186623 100644 --- a/graphene_django/tests/test_types.py +++ b/graphene_django/tests/test_types.py @@ -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: