diff --git a/tests/starwars/schema.py b/tests/starwars/schema.py index 5f9a04b4..4b672ad3 100644 --- a/tests/starwars/schema.py +++ b/tests/starwars/schema.py @@ -176,7 +176,7 @@ "provided, returns the hero of that particular episode.", ) }, - resolve=lambda _souce, _info, episode=None: get_hero_async(episode), + resolve=lambda _source, _info, episode=None: get_hero_async(episode), ), "human": GraphQLField( human_type, @@ -186,7 +186,7 @@ type_=GraphQLNonNull(GraphQLString), ) }, - resolve=lambda _souce, _info, id: get_human(id), + resolve=lambda _source, _info, id: get_human(id), ), "droid": GraphQLField( droid_type,