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 7a5ded4 commit a67d78eCopy full SHA for a67d78e
graphql_relay/mutation/tests/test_mutation.py
@@ -1,3 +1,5 @@
1
+from collections import OrderedDict
2
+
3
from promise import Promise
4
from graphql import graphql
5
from graphql.type import (
@@ -315,7 +317,7 @@ def test_contains_correct_field():
315
317
}
316
318
319
'''
- expected = {
320
+ expected = OrderedDict({
321
'__schema': {
322
'mutationType': {
323
'fields': [
@@ -402,7 +404,7 @@ def test_contains_correct_field():
402
404
]
403
405
406
- }
407
+ })
408
result = graphql(schema, query)
409
assert not result.errors
410
assert result.data == expected
0 commit comments