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 b5a450c commit 16a0d9cCopy full SHA for 16a0d9c
graphene_django/tests/test_query.py
@@ -345,25 +345,21 @@ class Query(graphene.ObjectType):
345
'''
346
347
expected = {
348
- "allReporters": {
349
- "edges": [
350
- {
351
- "node": {
352
- "id": "UmVwb3J0ZXJUeXBlOjE=",
353
- "articles": {
354
355
356
357
- "id": "QXJ0aWNsZVR5cGU6MQ=="
358
- }
359
360
- ]
361
362
363
364
365
366
+ 'allReporters': {
+ 'edges': [{
+ 'node': {
+ 'id': 'UmVwb3J0ZXJUeXBlOjE=',
+ 'articles': {
+ 'id': 'QXJ0aWNsZVR5cGU6MQ=='
+ }
+ }]
367
368
result = schema.execute(query)
369
assert not result.errors
0 commit comments