Skip to content

Commit a53b782

Browse files
authored
Syntax Error Fixed for Dictionary assert (#1267)
1 parent 8c327fc commit a53b782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/types/objecttypes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ When we execute a query against that schema.
102102
query_string = "{ me { fullName } }"
103103
result = schema.execute(query_string)
104104
105-
assert result.data["me"] == {"fullName": "Luke Skywalker")
105+
assert result.data["me"] == {"fullName": "Luke Skywalker"}
106106
107107
Then we go through the following steps to resolve this query:
108108

0 commit comments

Comments
 (0)