We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad4b0c commit 060b04aCopy full SHA for 060b04a
graphene_django/tests/test_types.py
@@ -250,17 +250,7 @@ class Meta:
250
fields = "__all__"
251
252
fields = list(Reporter._meta.fields.keys())
253
- assert fields == [
254
- "id",
255
- "first_name",
256
- "last_name",
257
- "email",
258
- "pets",
259
- "a_choice",
260
- "reporter_type",
261
- "films",
262
- "articles",
263
- ]
+ assert len(fields) == len(ReporterModel._meta.get_fields())
264
265
266
@with_local_registry
0 commit comments