mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmselect/promql: fix tests after 2dae0a2c47
This commit is contained in:
parent
dc70e7de76
commit
8844b38745
1 changed files with 10 additions and 8 deletions
|
@ -67,10 +67,11 @@ func TestExecSuccess(t *testing.T) {
|
|||
AccountID: accountID,
|
||||
ProjectID: projectID,
|
||||
},
|
||||
Start: start,
|
||||
End: end,
|
||||
Step: step,
|
||||
Deadline: searchutils.NewDeadline(time.Now(), time.Minute, ""),
|
||||
Start: start,
|
||||
End: end,
|
||||
Step: step,
|
||||
Deadline: searchutils.NewDeadline(time.Now(), time.Minute, ""),
|
||||
RoundDigits: 100,
|
||||
}
|
||||
for i := 0; i < 5; i++ {
|
||||
result, err := Exec(ec, q, false)
|
||||
|
@ -6589,10 +6590,11 @@ func TestExecError(t *testing.T) {
|
|||
AccountID: 123,
|
||||
ProjectID: 567,
|
||||
},
|
||||
Start: 1000,
|
||||
End: 2000,
|
||||
Step: 100,
|
||||
Deadline: searchutils.NewDeadline(time.Now(), time.Minute, ""),
|
||||
Start: 1000,
|
||||
End: 2000,
|
||||
Step: 100,
|
||||
Deadline: searchutils.NewDeadline(time.Now(), time.Minute, ""),
|
||||
RoundDigits: 100,
|
||||
}
|
||||
for i := 0; i < 4; i++ {
|
||||
rv, err := Exec(ec, q, false)
|
||||
|
|
Loading…
Reference in a new issue