diff --git a/graphql_compiler/tests/test_schema_generation.py b/graphql_compiler/tests/test_schema_generation.py index f5e596670..0d048d51c 100644 --- a/graphql_compiler/tests/test_schema_generation.py +++ b/graphql_compiler/tests/test_schema_generation.py @@ -214,7 +214,7 @@ def test_type_equivalence_dicts(self): # Assert that the Person class is part of the schema. self.assertEqual(person, schema.get_type('Person')) - # Assert that the union consist of the Baby and Person classes + # Assert that the union consists of the Baby and Person classes self.assertEqual(person_baby_union.types, [baby, person]) # Assert that arbitrarily chosen inherited property is still correctly inherited