From ba721f368d489761948678a0f9d971d84ef83ebe Mon Sep 17 00:00:00 2001 From: Andrew Sisley Date: Wed, 6 Mar 2024 20:00:07 -0500 Subject: [PATCH] Remove old test Update property --- tests/integration/utils.go | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/integration/utils.go b/tests/integration/utils.go index f15ac8f0ef..b530f45920 100644 --- a/tests/integration/utils.go +++ b/tests/integration/utils.go @@ -22,10 +22,6 @@ type RequestTestCase struct { // of docs in stringified JSON format Docs map[int][]string - // updates is a map from document index, to a list - // of changes in strinigied JSON format - Updates map[int]map[int][]string - Results []map[string]any // The expected content of an expected error @@ -56,21 +52,6 @@ func ExecuteRequestTestCase( } } - for collectionIndex, docUpdates := range test.Updates { - for docIndex, docs := range docUpdates { - for _, doc := range docs { - actions = append( - actions, - UpdateDoc{ - CollectionID: collectionIndex, - DocID: docIndex, - Doc: doc, - }, - ) - } - } - } - if test.Request != "" { actions = append( actions,