Skip to content

Commit 306a582

Browse files
committed
test(agents): remove redundant payload casts
1 parent d253392 commit 306a582

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/agents/openai-transport-stream.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ describe("openai transport stream", () => {
811811
{
812812
reasoningEffort: "high",
813813
} as never,
814-
) as Record<string, unknown>;
814+
);
815815

816816
expect(params).toMatchObject({
817817
reasoning: {
@@ -850,7 +850,7 @@ describe("openai transport stream", () => {
850850
{
851851
reasoningEffort: "high",
852852
} as never,
853-
) as Record<string, unknown>;
853+
);
854854

855855
expect(params).toMatchObject({
856856
reasoning: {

0 commit comments

Comments
 (0)