mirror of
https://github.com/graphql-python/graphene.git
synced 2025-02-02 12:44:15 +03:00
Syntax Error Fixed for Dictionary assert (#1267)
This commit is contained in:
parent
8c327fc4ed
commit
a53b782bf8
|
@ -102,7 +102,7 @@ When we execute a query against that schema.
|
||||||
query_string = "{ me { fullName } }"
|
query_string = "{ me { fullName } }"
|
||||||
result = schema.execute(query_string)
|
result = schema.execute(query_string)
|
||||||
|
|
||||||
assert result.data["me"] == {"fullName": "Luke Skywalker")
|
assert result.data["me"] == {"fullName": "Luke Skywalker"}
|
||||||
|
|
||||||
Then we go through the following steps to resolve this query:
|
Then we go through the following steps to resolve this query:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user