Skip to content

Commit 1da8950

Browse files
committed
Skip test in <1.26 due to missing maxVectorDistance
1 parent 261c566 commit 1da8950

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/collections/aggregate/integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,8 @@ describe('Testing of collection.aggregate search methods', () => {
436436
});
437437

438438
it('should return an aggregation on a hybrid search', async () => {
439-
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 25, 0))) {
440-
console.warn('Skipping test as there is a bug with this in 1.24.26 that will not be fixed');
439+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 26, 0))) {
440+
console.warn('Skipping test max vector distance not supported in 1.25.x');
441441
return;
442442
}
443443
const result = await collection.aggregate.hybrid('test', {

0 commit comments

Comments
 (0)