Update get_workflow_events call with specific parameters in tests

This commit is contained in:
2026-06-15 21:52:58 +02:00
parent 63d0937754
commit ec28cc9bff

View File

@@ -152,7 +152,7 @@ class WorkflowApiTests(unittest.IsolatedAsyncioTestCase):
db.close()
with patch.object(api, "SessionLocal", self.Session):
response = api.get_workflow_events(run_id)
response = api.get_workflow_events(run_id, after_sequence=0, follow=True)
body = b""
async for chunk in response.body_iterator:
body += chunk.encode("utf-8") if isinstance(chunk, str) else chunk