Skip to content

Commit f0a968d

Browse files
committed
test_validation: various grammar fixes
Replicates graphql/graphql-js@0a654cc
1 parent b969a9d commit f0a968d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/type/test_validation.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ def rejects_with_relevant_locations_for_a_non_output_type():
11021102

11031103

11041104
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():
11061106
query_type = GraphQLObjectType(
11071107
"BadObject",
11081108
{"f": GraphQLField(GraphQLString)},
@@ -2671,7 +2671,7 @@ def rejects_a_circular_interface_implementation():
26712671

26722672

26732673
def 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)

0 commit comments

Comments
 (0)