File tree Expand file tree Collapse file tree 2 files changed +3
-27
lines changed Expand file tree Collapse file tree 2 files changed +3
-27
lines changed Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44
55install_requires = [
6- "graphql-core>=3.1.4 ,<3.2" ,
6+ "graphql-core>=3.1.5 ,<3.2" ,
77 "yarl>=1.6,<2.0" ,
88]
99
Original file line number Diff line number Diff line change @@ -264,32 +264,9 @@ def test_multiple_operations(ds):
264264 ),
265265 )
266266
267- """
268- From graphql-core version 3.1.5, print_ast() break arguments over multiple lines
269- Accepting both cases here
270- """
271-
272267 assert (
273- (
274- print_ast (query )
275- == """query GetHeroName {
276- hero {
277- name
278- }
279- }
280-
281- mutation CreateReviewMutation {
282- createReview(episode: JEDI, review: {stars: 5, \
283- commentary: "This is a great movie!"}) {
284- stars
285- commentary
286- }
287- }
288- """
289- )
290- or (
291- print_ast (query )
292- == """query GetHeroName {
268+ print_ast (query )
269+ == """query GetHeroName {
293270 hero {
294271 name
295272 }
@@ -305,7 +282,6 @@ def test_multiple_operations(ds):
305282 }
306283}
307284"""
308- )
309285 )
310286
311287
You can’t perform that action at this time.
0 commit comments