Skip to content

Commit 7493825

Browse files
committed
WIP
1 parent f42b79d commit 7493825

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/integration/mongointernal_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@ func TestSearchIndex(t *testing.T) {
117117
ctx := context.Background()
118118

119119
_, err := mt.Coll.InsertMany(ctx, []interface{}{
120-
v2bson.M{
120+
bson.M{
121121
"string_field": "test1 test1",
122122
},
123123
})
124124
require.NoError(mt, err, "failed to insert")
125125

126126
view := mt.Coll.SearchIndexes()
127127

128-
definition := v2bson.D{
129-
{"mappings", v2bson.D{
128+
definition := bson.D{
129+
{"mappings", bson.D{
130130
{"dynamic", true},
131131
}},
132132
}

0 commit comments

Comments
 (0)