From 2a32d48ed5f258a4d4d610eb93501a8e1d9e6546 Mon Sep 17 00:00:00 2001 From: Pedro Mantica Date: Mon, 25 Mar 2019 14:05:00 -0400 Subject: [PATCH] Nit --- graphql_compiler/tests/test_schema_generation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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