File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def test_synchronous_error_nulls_out_error_subtrees():
166166 syncError
167167 syncReturnError
168168 syncReturnErrorList
169- async
169+ asyncBasic
170170 asyncReject
171171 asyncEmptyReject
172172 asyncReturnError
@@ -196,7 +196,7 @@ def syncReturnErrorList(self):
196196 Exception ("Error getting syncReturnErrorList3" ),
197197 ]
198198
199- def async (self ):
199+ def asyncBasic (self ):
200200 # type: () -> Promise
201201 return resolved ("async" )
202202
@@ -220,7 +220,7 @@ def asyncReturnError(self):
220220 "syncError" : GraphQLField (GraphQLString ),
221221 "syncReturnError" : GraphQLField (GraphQLString ),
222222 "syncReturnErrorList" : GraphQLField (GraphQLList (GraphQLString )),
223- "async " : GraphQLField (GraphQLString ),
223+ "asyncBasic " : GraphQLField (GraphQLString ),
224224 "asyncReject" : GraphQLField (GraphQLString ),
225225 "asyncEmptyReject" : GraphQLField (GraphQLString ),
226226 "asyncReturnError" : GraphQLField (GraphQLString ),
@@ -236,7 +236,7 @@ def sort_key(item):
236236 def handle_results (result ):
237237 # type: (ExecutionResult) -> None
238238 assert result .data == {
239- "async " : "async" ,
239+ "asyncBasic " : "async" ,
240240 "asyncEmptyReject" : None ,
241241 "asyncReject" : None ,
242242 "asyncReturnError" : None ,
You can’t perform that action at this time.
0 commit comments