Skip to content

Commit dac64cd

Browse files
committed
Fix other incorrectly configured BC tests
1 parent edc11b2 commit dac64cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/collections/query/integration.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ describe('Testing of the collection.query methods with a collection with a multi
821821
},
822822
});
823823

824-
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 27, 0))) {
824+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 26, 0))) {
825825
await expect(query()).rejects.toThrow(WeaviateUnsupportedFeatureError);
826826
return;
827827
}
@@ -845,7 +845,7 @@ describe('Testing of the collection.query methods with a collection with a multi
845845
targetVector: collection.multiTargetVector.sum(['title', 'title2']),
846846
});
847847

848-
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 27, 0))) {
848+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 26, 0))) {
849849
await expect(query()).rejects.toThrow(WeaviateUnsupportedFeatureError);
850850
return;
851851
}
@@ -870,7 +870,7 @@ describe('Testing of the collection.query methods with a collection with a multi
870870
},
871871
});
872872

873-
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 27, 0))) {
873+
if (await client.getWeaviateVersion().then((ver) => ver.isLowerThan(1, 26, 0))) {
874874
await expect(query()).rejects.toThrow(WeaviateUnsupportedFeatureError);
875875
return;
876876
}

0 commit comments

Comments
 (0)