Skip to content

Commit fe199f2

Browse files
committed
Fix tests for previous versions
1 parent 777de70 commit fe199f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/collections/config/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ describe('Testing of the collection.config namespace', () => {
835835
}
836836
);
837837

838-
requireAtLeast(1, 32, 4).it.only(
838+
requireAtLeast(1, 32, 4).it(
839839
'should be able to create a collection with an uncompressed quantizer',
840840
async () => {
841841
const collectionName = 'TestCollectionConfigCreateWithUncompressedQuantizer';

src/schema/journey.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -781,6 +781,8 @@ async function newClassObject(className: string, client: WeaviateClient): Promis
781781
vectorCacheMaxObjects: 500000,
782782
flatSearchCutoff: 40000,
783783
filterStrategy: (await isVer(client, 27, 0)) ? 'sweeping' : undefined,
784+
skipDefaultQuantization: (await isVer(client, 32, 4)) ? false : undefined,
785+
trackDefaultQuantization: (await isVer(client, 32, 4)) ? false : undefined,
784786
},
785787
invertedIndexConfig: {
786788
cleanupIntervalSeconds: 60,

0 commit comments

Comments
 (0)