Skip to content

Commit a7e815a

Browse files
chore: fix broken test
1 parent aae0fa6 commit a7e815a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/transports/stdio.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe("StdioRunner", () => {
3030
const response = await client.listTools();
3131
expect(response).toBeDefined();
3232
expect(response.tools).toBeDefined();
33-
expect(response.tools).toHaveLength(20);
33+
expect(response.tools).toHaveLength(21);
3434

3535
const sortedTools = response.tools.sort((a, b) => a.name.localeCompare(b.name));
3636
expect(sortedTools[0]?.name).toBe("aggregate");

0 commit comments

Comments
 (0)