Skip to content

Commit 318b926

Browse files
committed
fix types
1 parent 772f568 commit 318b926

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/e2e/call-model-tools.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ describe('Enhanced Tool Support for callModel', () => {
6464
target: 'openapi-3.0',
6565
});
6666

67-
// @ts-expect-error - description is not a property of _JSONSchema
68-
expect(jsonSchema.properties?.location?.description).toBe(
67+
expect(jsonSchema.properties?.location?.['description']).toBe(
6968
'City and country e.g. Bogotá, Colombia',
7069
);
7170
});

0 commit comments

Comments
 (0)