Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/integration/clam_prose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func clamDefaultTruncLimitOp(ctx context.Context, mt *mtest.T, coll *mongo.Colle

// Construct an array of docs containing the document {"x" : "y"}
// repeated "documentSize" times.
docs := []interface{}{}
docs := []any{}
for i := 0; i < documentsSize; i++ {
docs = append(docs, bson.D{{"x", "y"}})
}
Expand Down Expand Up @@ -346,7 +346,7 @@ func TestCommandLoggingAndMonitoringProse(t *testing.T) {
sinkCtx, sinkCancel := context.WithDeadline(ctx, time.Now().Add(deadline))
defer sinkCancel()

validator := func(order int, _ int, _ string, keysAndValues ...interface{}) error {
validator := func(order int, _ int, _ string, keysAndValues ...any) error {
// If the order exceeds the length of the
// "orderedCaseValidators," then throw an error.
if order >= len(tcase.orderedLogValidators) {
Expand Down
Loading
Loading