Skip to content

Commit 2c9854f

Browse files
committed
Fix tests
1 parent 6c8de30 commit 2c9854f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/collections/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ describe('Testing of the collections.create method', () => {
160160
});
161161

162162
it('should be able to create a simple collection without a generic and no properties', async () => {
163-
const collectionName = 'TestCollectionSimpleNonGeneric';
163+
const collectionName = 'TestCollectionSimpleNonGenericNoProperties';
164164
const response = await contextionary.collections
165165
.create({
166166
name: collectionName,

src/collections/journey.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
8686
dataType: 'text',
8787
indexFilterable: true,
8888
indexInverted: false,
89+
indexRangeFilters: false,
8990
indexSearchable: true,
9091
vectorizerConfig: {
9192
'text2vec-cohere': {
@@ -100,6 +101,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
100101
dataType: 'int',
101102
indexFilterable: true,
102103
indexInverted: false,
104+
indexRangeFilters: false,
103105
indexSearchable: false,
104106
vectorizerConfig: {
105107
'text2vec-cohere': {
@@ -114,6 +116,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
114116
dataType: 'geoCoordinates',
115117
indexFilterable: true,
116118
indexInverted: false,
119+
indexRangeFilters: false,
117120
indexSearchable: false,
118121
vectorizerConfig: {
119122
'text2vec-cohere': {
@@ -128,6 +131,7 @@ describe('Journey testing of the client using a WCD cluster', () => {
128131
dataType: 'date',
129132
indexFilterable: true,
130133
indexInverted: false,
134+
indexRangeFilters: false,
131135
indexSearchable: false,
132136
vectorizerConfig: {
133137
'text2vec-cohere': {

0 commit comments

Comments
 (0)