mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-10 19:57:15 +03:00
exclude 'fans' from ReporterForm tests (#1434)
This commit is contained in:
parent
b1abebdb97
commit
3172710d12
|
@ -31,7 +31,7 @@ class ReporterType(DjangoObjectType):
|
|||
class ReporterForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Reporter
|
||||
exclude = ("pets", "email")
|
||||
exclude = ("pets", "email", "fans")
|
||||
|
||||
|
||||
class MyForm(forms.Form):
|
||||
|
|
Loading…
Reference in New Issue
Block a user