From c139f82811092a0f1b248ddd80dd6c171883653b Mon Sep 17 00:00:00 2001 From: Vyacheslav Matyukhin Date: Mon, 30 Dec 2019 02:12:50 +0300 Subject: [PATCH] Fix typo in exclude type checking test --- 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 5e9d1c232..518662323 100644 --- a/graphene_django/tests/test_types.py +++ b/graphene_django/tests/test_types.py @@ -315,7 +315,7 @@ class Meta: class Reporter2(DjangoObjectType): class Meta: model = ReporterModel - fields = "foo" + exclude = "foo" class TestDjangoObjectType: