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 88ded2f commit 8ab1b56Copy full SHA for 8ab1b56
tests/type/test_definition.py
@@ -732,7 +732,7 @@ def accepts_a_union_type_without_types():
732
union_type = GraphQLUnionType("SomeUnion", [])
733
assert union_type.types == []
734
735
- def rejects_an_interface_type_with_an_incorrect_type_for_resolve_type():
+ def rejects_a_union_type_with_an_incorrect_type_for_resolve_type():
736
with raises(TypeError) as exc_info:
737
# noinspection PyTypeChecker
738
GraphQLUnionType("SomeUnion", [], resolve_type={}) # type: ignore
0 commit comments