Skip to content

Commit 09ff102

Browse files
committed
Fixed executor test
1 parent e8dafc5 commit 09ff102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql/execution/querybuilder/tests/test_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def test_fragment_resolver_resolves_all_list_null():
148148
'id': GraphQLField(GraphQLInt, resolver=lambda obj, *_, **__: 1),
149149
})
150150
Query = GraphQLObjectType('Query', fields={
151-
'persons': GraphQLField(GraphQLNonNull(GraphQLList(GraphQLNonNull(Person))), resolver=lambda *args: [1, 2, None]),
151+
'persons': GraphQLField(GraphQLList(GraphQLNonNull(Person)), resolver=lambda *args: [1, 2, None]),
152152
})
153153

154154
document_ast = parse('''query {

0 commit comments

Comments
 (0)