Skip to content

Commit

Permalink
exclude 'fans' from ReporterForm tests (graphql-python#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
firaskafri authored and superlevure committed Jul 19, 2023
1 parent e32f6c8 commit f39329e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphene_django/forms/tests/test_djangoinputobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Meta:
class ReporterForm(forms.ModelForm):
class Meta:
model = Reporter
exclude = ("pets", "email")
exclude = ("pets", "email", "fans")


class MyForm(forms.Form):
Expand Down

0 comments on commit f39329e

Please sign in to comment.