From 9f2527f55f16dedb78a8db1f3c63d43439b0bb41 Mon Sep 17 00:00:00 2001 From: dylan Date: Wed, 4 Dec 2024 12:05:35 -0800 Subject: [PATCH] ci: test that vector integreity check can be toggled on index update with AVS 1.0.0 --- RELEASE | 2 +- e2e_test.go | 19 +++++++++---------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/RELEASE b/RELEASE index 4a36342..fd2a018 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -3.0.0 +3.1.0 diff --git a/e2e_test.go b/e2e_test.go index 218db75..415c942 100644 --- a/e2e_test.go +++ b/e2e_test.go @@ -574,16 +574,15 @@ func (suite *CmdTestSuite) TestSuccessfulUpdateIndexCmd() { WithHnswMergeReIndexParallelism(11). Build(), }, - // TODO enable this if the server enables vector integrity check changes on update - // { - // name: "test with enable vector integrity check", - // indexName: "successful-update", - // indexNamespace: "test", - // cmd: "index update -y -n test -i successful-update --hnsw-vector-integrity-check false", - // expectedIndex: newBuilder(). - // WithEnableVectorIntegrityCheck(false). - // Build(), - // }, + { + name: "test with enable vector integrity check", + indexName: "successful-update", + indexNamespace: "test", + cmd: "index update -y -n test -i successful-update --hnsw-vector-integrity-check false", + expectedIndex: newBuilder(). + WithHnswVectorIntegrityCheck(false). + Build(), + }, } for _, tc := range testCases {