File tree 1 file changed +3
-3
lines changed
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():
1102
1102
1103
1103
1104
1104
def 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 ():
1106
1106
query_type = GraphQLObjectType (
1107
1107
"BadObject" ,
1108
1108
{"f" : GraphQLField (GraphQLString )},
@@ -2671,7 +2671,7 @@ def rejects_a_circular_interface_implementation():
2671
2671
2672
2672
2673
2673
def describe_assert_valid_schema ():
2674
- def do_not_throw_on_valid_schemas ():
2674
+ def does_not_throw_on_valid_schemas ():
2675
2675
schema = build_schema (
2676
2676
(
2677
2677
"""
@@ -2683,7 +2683,7 @@ def do_not_throw_on_valid_schemas():
2683
2683
)
2684
2684
assert_valid_schema (schema )
2685
2685
2686
- def include_multiple_errors_into_a_description ():
2686
+ def combines_multiple_errors ():
2687
2687
schema = build_schema ("type SomeType" )
2688
2688
with raises (TypeError ) as exc_info :
2689
2689
assert_valid_schema (schema )
You can’t perform that action at this time.
0 commit comments