Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
trzysiek committed Dec 28, 2024
1 parent 07ba6cc commit a2c3f74
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion quesma/testdata/aggregation_requests_2.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import (
"time"
)

var randomTrueVariableUsedBelow = true

// Goland lags a lot when you edit aggregation_requests.go file, so let's add new tests to this one.

var AggregationTests2 = []AggregationTestCase{
Expand Down Expand Up @@ -5340,7 +5342,7 @@ var AggregationTests2 = []AggregationTestCase{
}},
{Cols: []model.QueryResultCol{
model.NewQueryResultCol("aggr__terms__parent_count", int64(50000)),
model.NewQueryResultCol("aggr__terms__key_0", &someTrue),
model.NewQueryResultCol("aggr__terms__key_0", &randomTrueVariableUsedBelow), // used here
model.NewQueryResultCol("aggr__terms__count", int64(2)),
}},
},
Expand Down

0 comments on commit a2c3f74

Please sign in to comment.