From a53b782bf8ec5612d5cceb582fbde68eeba859aa Mon Sep 17 00:00:00 2001 From: Ali Reza Yahyapour Date: Tue, 22 Sep 2020 19:40:01 +0330 Subject: [PATCH] Syntax Error Fixed for Dictionary assert (#1267) --- docs/types/objecttypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/objecttypes.rst b/docs/types/objecttypes.rst index 29d3954c..3cc8d830 100644 --- a/docs/types/objecttypes.rst +++ b/docs/types/objecttypes.rst @@ -102,7 +102,7 @@ When we execute a query against that schema. query_string = "{ me { fullName } }" 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: