We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 265e613 commit 13e6b05Copy full SHA for 13e6b05
1 file changed
tests/utilities/test_print_schema.py
@@ -302,9 +302,11 @@ def prints_schema_with_description():
302
)
303
304
def omits_schema_of_common_names():
305
- schema = GraphQLSchema(query=GraphQLObjectType("Query", {}),
306
- mutation=GraphQLObjectType("Mutation", {}),
307
- subscription=GraphQLObjectType("Subscription", {}))
+ schema = GraphQLSchema(
+ query=GraphQLObjectType("Query", {}),
+ mutation=GraphQLObjectType("Mutation", {}),
308
+ subscription=GraphQLObjectType("Subscription", {}),
309
+ )
310
311
assert expect_printed_schema(schema) == dedent(
312
"""
0 commit comments