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,