mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-22 00:31:44 +00:00
test(agent-sdk): expect 'finished' instead of 'completed' for terminal RunStatus
This commit is contained in:
parent
f68bd10230
commit
290808fa64
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ describe("noop round-trip", () => {
|
|||
// Re-fetch the run by ID and confirm the terminal status.
|
||||
const fetched = await session.getRun(run.id);
|
||||
expect(fetched.id).toBe(run.id);
|
||||
expect(fetched.status).toBe("completed");
|
||||
expect(fetched.status).toBe("finished");
|
||||
expect(fetched.result).toBe("hi there");
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue