Skip to content

Commit edc11b2

Browse files
committed
Fix incorrect version check in test
1 parent 54e01da commit edc11b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collections/query/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ describe('Testing of the collection.query methods with a collection with a multi
896896
targetVector: collection.multiTargetVector.sum(['title', 'title2']),
897897
});
898898

899-
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 27, 0))) {
899+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 26, 0))) {
900900
await expect(query()).rejects.toThrow(WeaviateUnsupportedFeatureError);
901901
return;
902902
}

0 commit comments

Comments
 (0)