File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1187,11 +1187,10 @@ async def friend_list(_info):
1187
1187
}
1188
1188
1189
1189
@pytest .mark .asyncio ()
1190
- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
1191
1190
async def filters_payloads_that_are_nulled_by_a_later_synchronous_error ():
1192
1191
document = parse (
1193
1192
"""
1194
- query {
1193
+ query {
1195
1194
nestedObject {
1196
1195
nestedFriendList @stream(initialCount: 0) {
1197
1196
name
@@ -1203,8 +1202,8 @@ async def filters_payloads_that_are_nulled_by_a_later_synchronous_error():
1203
1202
)
1204
1203
1205
1204
async def friend_list (_info ):
1206
- await sleep (0 )
1207
- yield friends [0 ]
1205
+ await sleep (0 ) # pragma: no cover
1206
+ yield friends [0 ] # pragma: no cover
1208
1207
1209
1208
result = await complete (
1210
1209
document ,
You can’t perform that action at this time.
0 commit comments