Skip to content

Commit 3172710

Browse files
authored
exclude 'fans' from ReporterForm tests (#1434)
1 parent b1abebd commit 3172710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: graphene_django/forms/tests/test_djangoinputobject.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Meta:
3131
class ReporterForm(forms.ModelForm):
3232
class Meta:
3333
model = Reporter
34-
exclude = ("pets", "email")
34+
exclude = ("pets", "email", "fans")
3535

3636

3737
class MyForm(forms.Form):

0 commit comments

Comments
 (0)