Skip to content

Commit b85cd37

Browse files
[CAE-827] Moved test cases
1 parent 16cad1d commit b85cd37

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/search/lib/commands/CREATE.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ describe('FT.CREATE', () => {
474474
);
475475
}, GLOBAL.SERVERS.OPEN);
476476

477-
testUtils.testWithClientIfVersionWithinRange([[7], 'LATEST'], 'client.ft.create vector types floats', async client => {
477+
testUtils.testWithClientIfVersionWithinRange([[7], 'LATEST'], 'client.ft.create vector types big floats', async client => {
478478
assert.equal(
479479
await client.ft.create("index_float32", {
480480
field: {
@@ -500,7 +500,10 @@ describe('FT.CREATE', () => {
500500
}),
501501
"OK"
502502
);
503+
}, GLOBAL.SERVERS.OPEN);
504+
503505

506+
testUtils.testWithClientIfVersionWithinRange([[8], 'LATEST'], 'client.ft.create vector types small floats and ints', async client => {
504507
assert.equal(
505508
await client.ft.create("index_float16", {
506509
field: {
@@ -526,10 +529,7 @@ describe('FT.CREATE', () => {
526529
}),
527530
"OK"
528531
);
529-
}, GLOBAL.SERVERS.OPEN);
530-
531-
532-
testUtils.testWithClientIfVersionWithinRange([[8], 'LATEST'], 'client.ft.create vector types ints', async client => {
532+
533533
assert.equal(
534534
await client.ft.create("index_int8", {
535535
field: {

0 commit comments

Comments
 (0)