Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <[email protected]>
  • Loading branch information
shanghaikid committed Nov 6, 2024
1 parent f513acb commit dd5422d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/build/Collection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ describe('Collection Api', () => {

try {
await milvusClient.createCollection(
genCollectionParams({ collectionName: 'any', dim: [8] })
genCollectionParams({
collectionName: 'any',
vectorType: [DataType.BinaryVector],
dim: [6],
})
);
} catch (error) {
expect(error.message).toEqual(
Expand Down

0 comments on commit dd5422d

Please sign in to comment.