diff --git a/test/e2e/standalone/index_test.go b/test/e2e/standalone/index_test.go index 5b33cf8..525beb1 100644 --- a/test/e2e/standalone/index_test.go +++ b/test/e2e/standalone/index_test.go @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023, 2024 Oracle and/or its affiliates. + * Copyright (c) 2023, 2025 Oracle and/or its affiliates. * Licensed under the Universal Permissive License v 1.0 as shown at * https://oss.oracle.com/licenses/upl. */ @@ -103,6 +103,6 @@ func canFindIndex(g *gomega.WithT, namedMap coherence.NamedMap[int, utils.Person g.Expect(err).ShouldNot(gomega.HaveOccurred()) jsonString := string(jsonData) - return strings.Contains(jsonString, "\"extractor\":\".id\",\"index\":\"Simple") || - strings.Contains(jsonString, "\"extractor\":\".id\",\"index\":\"Partitioned") + return strings.Contains(jsonString, "id\",\"index\":\"Simple") || + strings.Contains(jsonString, "id\",\"index\":\"Partitioned") }