Skip to content

Commit

Permalink
Fix a bad rebase between #1970 and #1965. (#2011)
Browse files Browse the repository at this point in the history
* Fix a bad rebase between #1970 and #1965.

Signed-off-by: Cyril Tovena <cyril.tovena@gmail.com>

* fmt

Signed-off-by: Cyril Tovena <cyril.tovena@gmail.com>
  • Loading branch information
cyriltovena authored Apr 29, 2020
1 parent 34f9c60 commit 5e34df8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/logql/engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ func TestEngine_NewRangeQuery(t *testing.T) {
sum by (app) (rate({app=~"foo|bar"} |~".+bar" [1m]))
) * 2
`,
time.Unix(60, 0), time.Unix(180, 0), 30 * time.Second, logproto.FORWARD, 100,
time.Unix(60, 0), time.Unix(180, 0), 30 * time.Second, 0, logproto.FORWARD, 100,
[][]*logproto.Stream{
{
newStream(testSize, factor(5, identity), `{app="foo"}`),
Expand Down Expand Up @@ -1041,7 +1041,7 @@ func TestEngine_NewRangeQuery(t *testing.T) {
sum by (app) (rate({app=~"foo|bar"} |~".+bar" [1m]))
) + 1
`,
time.Unix(60, 0), time.Unix(180, 0), 30 * time.Second, logproto.FORWARD, 100,
time.Unix(60, 0), time.Unix(180, 0), 30 * time.Second, 0, logproto.FORWARD, 100,
[][]*logproto.Stream{
{
newStream(testSize, factor(5, identity), `{app="foo"}`),
Expand Down

0 comments on commit 5e34df8

Please sign in to comment.