We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b73ba94 commit 57a55d6Copy full SHA for 57a55d6
tests/integration/test_webhook.py
@@ -14,6 +14,7 @@
14
ListOfRuns,
15
ListOfWebhookDispatches,
16
ListOfWebhooks,
17
+ Run,
18
Webhook,
19
WebhookDispatch,
20
WebhookEventType,
@@ -39,7 +40,7 @@ async def _get_finished_run_id(client: ApifyClient | ApifyClientAsync) -> str:
39
40
# No completed runs found - start one and wait for it to finish
41
run = await maybe_await(client.actor(HELLO_WORLD_ACTOR).call())
42
- assert isinstance(run, ListOfRuns)
43
+ assert isinstance(run, Run)
44
45
return run.id
46
0 commit comments