Skip to content

Commit b96e135

Browse files
authored
Increase sleep in integration tests to 180 (#104)
1 parent 7f8ee73 commit b96e135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_actor_api_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class TestActorAbort:
235235
async def test_actor_abort(self, make_actor: ActorFactory) -> None:
236236
async def main_inner() -> None:
237237
async with Actor:
238-
await asyncio.sleep(120)
238+
await asyncio.sleep(180)
239239
# This should not be set, the actor should be aborted by now
240240
await Actor.set_value('OUTPUT', 'dummy')
241241

0 commit comments

Comments
 (0)