Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/e2e/test_actor_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async def main() -> None:
run_result = await run_actor(actor, run_input={'exit_code': exit_code})

assert run_result.exit_code == exit_code
assert run_result.status == 'FAILED' if exit_code > 0 else 'SUCCEEDED'
assert run_result.status == ('FAILED' if exit_code > 0 else 'SUCCEEDED')


async def test_actor_fail_with_custom_exit_codes_and_status_messages(
Expand Down
Loading
Loading