From f7b335e1de6d5e4ff95562b86802c29c0867156b Mon Sep 17 00:00:00 2001 From: Tim Middleton Date: Fri, 14 Mar 2025 08:58:28 +0800 Subject: [PATCH] Fix failing index test --- test/e2e/standalone/index_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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") }