exclude 'fans' from ReporterForm tests (#1434)

This commit is contained in:
Firas Kafri 2023-07-18 20:35:51 +03:00 committed by GitHub
parent b1abebdb97
commit 3172710d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):