Fixes identation in queries test file.

This commit is contained in:
Pablo Chinea 2016-12-30 12:27:45 +00:00
parent b5a450cb6d
commit 16a0d9ce58

View File

@ -345,25 +345,21 @@ def test_should_query_node_filtering():
'''
expected = {
"allReporters": {
"edges": [
{
"node": {
"id": "UmVwb3J0ZXJUeXBlOjE=",
"articles": {
"edges": [
{
"node": {
"id": "QXJ0aWNsZVR5cGU6MQ=="
}
}
]
}
}
}
]
}
}
'allReporters': {
'edges': [{
'node': {
'id': 'UmVwb3J0ZXJUeXBlOjE=',
'articles': {
'edges': [{
'node': {
'id': 'QXJ0aWNsZVR5cGU6MQ=='
}
}]
}
}
}]
}
}
result = schema.execute(query)
assert not result.errors