File tree 1 file changed +4
-4
lines changed
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():
166
166
syncError
167
167
syncReturnError
168
168
syncReturnErrorList
169
- async
169
+ asyncBasic
170
170
asyncReject
171
171
asyncEmptyReject
172
172
asyncReturnError
@@ -196,7 +196,7 @@ def syncReturnErrorList(self):
196
196
Exception ("Error getting syncReturnErrorList3" ),
197
197
]
198
198
199
- def async (self ):
199
+ def asyncBasic (self ):
200
200
# type: () -> Promise
201
201
return resolved ("async" )
202
202
@@ -220,7 +220,7 @@ def asyncReturnError(self):
220
220
"syncError" : GraphQLField (GraphQLString ),
221
221
"syncReturnError" : GraphQLField (GraphQLString ),
222
222
"syncReturnErrorList" : GraphQLField (GraphQLList (GraphQLString )),
223
- "async " : GraphQLField (GraphQLString ),
223
+ "asyncBasic " : GraphQLField (GraphQLString ),
224
224
"asyncReject" : GraphQLField (GraphQLString ),
225
225
"asyncEmptyReject" : GraphQLField (GraphQLString ),
226
226
"asyncReturnError" : GraphQLField (GraphQLString ),
@@ -236,7 +236,7 @@ def sort_key(item):
236
236
def handle_results (result ):
237
237
# type: (ExecutionResult) -> None
238
238
assert result .data == {
239
- "async " : "async" ,
239
+ "asyncBasic " : "async" ,
240
240
"asyncEmptyReject" : None ,
241
241
"asyncReject" : None ,
242
242
"asyncReturnError" : None ,
You can’t perform that action at this time.
0 commit comments