Skip to content

Commit 3d43f78

Browse files
committed
fixes
1 parent f7e6a99 commit 3d43f78

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

packages/codemod/test/v1-to-v2/transforms/specSchemaAccess.test.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,9 @@ describe('spec-schema-access transform', () => {
212212
});
213213

214214
it('skips BindingElement property-name', () => {
215-
const input = [
216-
`import { ToolSchema } from '@modelcontextprotocol/server';`,
217-
`const { ToolSchema: local } = obj;`,
218-
''
219-
].join('\n');
215+
const input = [`import { ToolSchema } from '@modelcontextprotocol/server';`, `const { ToolSchema: local } = obj;`, ''].join(
216+
'\n'
217+
);
220218
const { text, result } = applyTransform(input);
221219
expect(text).toContain('ToolSchema: local');
222220
expect(result.changesCount).toBe(0);

0 commit comments

Comments
 (0)