Skip to content

Commit

Permalink
Fix imports for previous PR (#16756)
Browse files Browse the repository at this point in the history
* fix

* changelog
  • Loading branch information
narph committed Mar 3, 2020
1 parent 10ed037 commit 8b54797
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Made `logstash-xpack` module once again have parity with internally-collected Logstash monitoring data. {pull}16198[16198]
- Change sqs metricset to use average as statistic method. {pull}16438[16438]
- Revert changes in `docker` module: add size flag to docker.container. {pull}16600[16600]
- Fix imports after PR was merged before rebase. {pull}16756[16756]

*Packetbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"testing"

mbtest "github.com/elastic/beats/metricbeat/mb/testing"
mbtest "github.com/elastic/beats/v7/metricbeat/mb/testing"
)

func TestData(t *testing.T) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package container_instance
import (
"os"

"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/v7/metricbeat/mb"
)

func init() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"testing"

mbtest "github.com/elastic/beats/metricbeat/mb/testing"
mbtest "github.com/elastic/beats/v7/metricbeat/mb/testing"
)

func TestData(t *testing.T) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package container_registry
import (
"os"

"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/v7/metricbeat/mb"
)

func init() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"testing"

mbtest "github.com/elastic/beats/metricbeat/mb/testing"
mbtest "github.com/elastic/beats/v7/metricbeat/mb/testing"
)

func TestData(t *testing.T) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package container_service
import (
"os"

"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/v7/metricbeat/mb"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/azure/data_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/v7/libbeat/common"
)

func TestReturnAllDimensions(t *testing.T) {
Expand Down

0 comments on commit 8b54797

Please sign in to comment.