Skip to content

Commit 8ab1b56

Browse files
committed
Fix test name
1 parent 88ded2f commit 8ab1b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/type/test_definition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def accepts_a_union_type_without_types():
732732
union_type = GraphQLUnionType("SomeUnion", [])
733733
assert union_type.types == []
734734

735-
def rejects_an_interface_type_with_an_incorrect_type_for_resolve_type():
735+
def rejects_a_union_type_with_an_incorrect_type_for_resolve_type():
736736
with raises(TypeError) as exc_info:
737737
# noinspection PyTypeChecker
738738
GraphQLUnionType("SomeUnion", [], resolve_type={}) # type: ignore

0 commit comments

Comments
 (0)