Skip to content

Commit ec8296e

Browse files
authored
Fix failing index test (#116)
1 parent 6687bdf commit ec8296e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/standalone/index_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, 2024 Oracle and/or its affiliates.
2+
* Copyright (c) 2023, 2025 Oracle and/or its affiliates.
33
* Licensed under the Universal Permissive License v 1.0 as shown at
44
* https://oss.oracle.com/licenses/upl.
55
*/
@@ -103,6 +103,6 @@ func canFindIndex(g *gomega.WithT, namedMap coherence.NamedMap[int, utils.Person
103103
g.Expect(err).ShouldNot(gomega.HaveOccurred())
104104

105105
jsonString := string(jsonData)
106-
return strings.Contains(jsonString, "\"extractor\":\".id\",\"index\":\"Simple") ||
107-
strings.Contains(jsonString, "\"extractor\":\".id\",\"index\":\"Partitioned")
106+
return strings.Contains(jsonString, "id\",\"index\":\"Simple") ||
107+
strings.Contains(jsonString, "id\",\"index\":\"Partitioned")
108108
}

0 commit comments

Comments
 (0)