Skip to content

Commit

Permalink
Fix test following async change
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Dec 2, 2024
1 parent 0015622 commit 615eeec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -4728,7 +4728,7 @@ class RunnableAsyncSleep(ParallelExecutionRunnable):
def init(self):
self._result = 1

async def run(self, event, path):
async def run_async(self, event, path):
await asyncio.sleep(1)
return self._result

Expand Down

0 comments on commit 615eeec

Please sign in to comment.