File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1102,7 +1102,7 @@ def rejects_with_relevant_locations_for_a_non_output_type():
11021102
11031103
11041104def describe_type_system_objects_can_only_implement_unique_interfaces ():
1105- def rejects_an_object_implementing_a_non_type_values ():
1105+ def rejects_an_object_implementing_a_non_type_value ():
11061106 query_type = GraphQLObjectType (
11071107 "BadObject" ,
11081108 {"f" : GraphQLField (GraphQLString )},
@@ -2671,7 +2671,7 @@ def rejects_a_circular_interface_implementation():
26712671
26722672
26732673def describe_assert_valid_schema ():
2674- def do_not_throw_on_valid_schemas ():
2674+ def does_not_throw_on_valid_schemas ():
26752675 schema = build_schema (
26762676 (
26772677 """
@@ -2683,7 +2683,7 @@ def do_not_throw_on_valid_schemas():
26832683 )
26842684 assert_valid_schema (schema )
26852685
2686- def include_multiple_errors_into_a_description ():
2686+ def combines_multiple_errors ():
26872687 schema = build_schema ("type SomeType" )
26882688 with raises (TypeError ) as exc_info :
26892689 assert_valid_schema (schema )
You can’t perform that action at this time.
0 commit comments