From 3ff2d69bac37fdb9259b35d9727b12c8fed39a46 Mon Sep 17 00:00:00 2001 From: Pablo Balbi Date: Thu, 2 Nov 2023 13:27:16 -0300 Subject: [PATCH] imports order --- component/loki/write/write_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/component/loki/write/write_test.go b/component/loki/write/write_test.go index eb326f88b066..642b53703e0c 100644 --- a/component/loki/write/write_test.go +++ b/component/loki/write/write_test.go @@ -3,7 +3,6 @@ package write import ( "context" "fmt" - "go.uber.org/atomic" "math" "net/http" "net/http/httptest" @@ -11,18 +10,19 @@ import ( "testing" "time" - "github.com/prometheus/common/model" - "github.com/stretchr/testify/require" - "github.com/grafana/agent/component/common/loki" "github.com/grafana/agent/component/common/loki/wal" "github.com/grafana/agent/component/discovery" lsf "github.com/grafana/agent/component/loki/source/file" "github.com/grafana/agent/pkg/flow/componenttest" "github.com/grafana/agent/pkg/util" + "github.com/grafana/river" + "github.com/prometheus/common/model" + "github.com/stretchr/testify/require" + "go.uber.org/atomic" + "github.com/grafana/loki/pkg/logproto" loki_util "github.com/grafana/loki/pkg/util" - "github.com/grafana/river" ) func TestRiverConfig(t *testing.T) {