From 231b738e52d22b61a00d92fdc893b848ffbd4b6b Mon Sep 17 00:00:00 2001 From: Paul Heasley Date: Sat, 16 Mar 2024 15:34:55 +1100 Subject: [PATCH] chore(tests): Fix spelling of _source --- tests/starwars/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,