From 16a0d9ce58b7ae2b16a5faea0e02c2244b324626 Mon Sep 17 00:00:00 2001 From: Pablo Chinea Date: Fri, 30 Dec 2016 12:27:45 +0000 Subject: [PATCH] Fixes identation in queries test file. --- graphene_django/tests/test_query.py | 34 +++++++++++++---------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/graphene_django/tests/test_query.py b/graphene_django/tests/test_query.py index 23b8511..750a421 100644 --- a/graphene_django/tests/test_query.py +++ b/graphene_django/tests/test_query.py @@ -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