Skip to content

Commit 16a0d9c

Browse files
author
Pablo Chinea
committed
Fixes identation in queries test file.
1 parent b5a450c commit 16a0d9c

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

graphene_django/tests/test_query.py

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -345,25 +345,21 @@ class Query(graphene.ObjectType):
345345
'''
346346

347347
expected = {
348-
"allReporters": {
349-
"edges": [
350-
{
351-
"node": {
352-
"id": "UmVwb3J0ZXJUeXBlOjE=",
353-
"articles": {
354-
"edges": [
355-
{
356-
"node": {
357-
"id": "QXJ0aWNsZVR5cGU6MQ=="
358-
}
359-
}
360-
]
361-
}
362-
}
363-
}
364-
]
365-
}
366-
}
348+
'allReporters': {
349+
'edges': [{
350+
'node': {
351+
'id': 'UmVwb3J0ZXJUeXBlOjE=',
352+
'articles': {
353+
'edges': [{
354+
'node': {
355+
'id': 'QXJ0aWNsZVR5cGU6MQ=='
356+
}
357+
}]
358+
}
359+
}
360+
}]
361+
}
362+
}
367363

368364
result = schema.execute(query)
369365
assert not result.errors

0 commit comments

Comments
 (0)