Skip to content

Commit

Permalink
[chore] Sort imports so that linter does not complain (#8286)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Haudum <[email protected]>
  • Loading branch information
chaudum authored Jan 26, 2023
1 parent b3b902a commit a42d44c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pkg/logql/rangemapper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import (
"testing"
"time"

"github.com/grafana/loki/pkg/logqlmodel"
"github.com/stretchr/testify/require"

"github.com/grafana/loki/pkg/logqlmodel"
)

func Test_SplitRangeInterval(t *testing.T) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ package deletion

import (
"github.com/go-kit/log/level"
"github.com/prometheus/common/model"
"github.com/prometheus/prometheus/model/labels"

"github.com/grafana/loki/pkg/logql/syntax"
"github.com/grafana/loki/pkg/storage/stores/indexshipper/compactor/retention"
"github.com/grafana/loki/pkg/util/filter"
util_log "github.com/grafana/loki/pkg/util/log"
"github.com/prometheus/common/model"
"github.com/prometheus/prometheus/model/labels"
)

type DeleteRequest struct {
Expand Down

0 comments on commit a42d44c

Please sign in to comment.