We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682e044 commit 27c8876Copy full SHA for 27c8876
tests/subscription/test_subscribe.py
@@ -128,7 +128,7 @@ def send_important_email(new_email):
128
# Check all error cases when initializing the subscription.
129
def describe_subscription_initialization_phase():
130
@mark.asyncio
131
- async def accepts_an_object_with_named_properties_as_arguments():
+ async def accepts_keyword_arguments():
132
document = parse(
133
"""
134
subscription {
@@ -142,7 +142,9 @@ async def empty_async_iterator(_info):
142
yield value
143
144
await subscribe(
145
- email_schema, document, {"importantEmail": empty_async_iterator}
+ schema=email_schema,
146
+ document=document,
147
+ root_value={"importantEmail": empty_async_iterator},
148
)
149
150
0 commit comments