Syntax Error Fixed for Dictionary assert (#1267)

This commit is contained in:
Ali Reza Yahyapour 2020-09-22 19:40:01 +03:30 committed by GitHub
parent 8c327fc4ed
commit a53b782bf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: