From 43b7eac197d2f0042a30481394d201f523df5dae Mon Sep 17 00:00:00 2001 From: dwelch-spike <53876192+dwelch-spike@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:36:41 -0800 Subject: [PATCH] ci: test that vector integreity check can be toggled on index update with AVS 1.0.0 (#25) vec-448 --- 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 {