We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8bf81 commit 47cd3eeCopy full SHA for 47cd3ee
mapping/mapping_test.go
@@ -1192,6 +1192,7 @@ func TestMappingArrayOfStringGeoPoints(t *testing.T) {
1192
"points": []string {
1193
"1.0, 2.0",
1194
"3.0, 4.0",
1195
+ "5.0, 6.0",
1196
},
1197
}
1198
@@ -1205,6 +1206,7 @@ func TestMappingArrayOfStringGeoPoints(t *testing.T) {
1205
1206
expectPoints := map[string][]float64{
1207
"first": {2.0, 1.0},
1208
"second": {4.0, 3.0},
1209
+ "third": {6.0, 5.0},
1210
1211
1212
for _, f := range doc.Fields {
@@ -1237,4 +1239,4 @@ func TestMappingArrayOfStringGeoPoints(t *testing.T) {
1237
1239
t.Errorf("some points not found: %v", expectPoints)
1238
1240
1241
-}
1242
+}
0 commit comments