Skip to content

Commit b78e00f

Browse files
committed
Cleanup
1 parent ecee2d0 commit b78e00f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.evergreen/perfcomp/compare.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ type StableRegion struct {
6161
TimeSeriesInfo TimeSeriesInfo
6262
Start any `bson:"start"`
6363
End any `bson:"end"`
64-
Values []float64 `bson:"values"` // All microbenchmark values that makes up the stable region
64+
Values []float64 `bson:"values"` // All microbenchmark values that make up the stable region
6565
StartOrder int64 `bson:"start_order"`
6666
EndOrder int64 `bson:"end_order"`
6767
Mean float64 `bson:"mean"`
@@ -209,7 +209,7 @@ func findLastStableRegion(ctx context.Context, project string, testname string,
209209
{"time_series_info.test", testname},
210210
{"time_series_info.measurement", measurement},
211211
{"last", true},
212-
{"contexts", bson.D{{"$in", bson.A{perfContext}}}}, // TODO (GODRIVER-3102): Refactor perf context for project switching.
212+
{"contexts", bson.D{{"$in", bson.A{perfContext}}}},
213213
}
214214

215215
findOptions := options.FindOne().SetSort(bson.D{{"end", -1}})

0 commit comments

Comments
 (0)