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 0e50649 commit 1636b97Copy full SHA for 1636b97
tests/integration/test_actor_lifecycle.py
@@ -2,8 +2,6 @@
2
3
from typing import TYPE_CHECKING
4
5
-from apify_shared.consts import ActorExitCodes
6
-
7
from apify import Actor
8
9
if TYPE_CHECKING:
@@ -117,7 +115,7 @@ async def main() -> None:
117
115
actor = await make_actor(label='with-actor-fail', main_func=main)
118
116
run_result = await run_actor(actor)
119
120
- assert run_result.exit_code == ActorExitCodes.ERROR_USER_FUNCTION_THREW.value
+ assert run_result.exit_code == 91
121
assert run_result.status == 'FAILED'
122
123
0 commit comments