Skip to content

Commit

Permalink
chore(tests): Fix spelling of _source (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
phdesign committed Mar 16, 2024
1 parent 40f07cf commit 9052403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/starwars/schema.py
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 9052403

Please sign in to comment.