Skip to content

Commit

Permalink
fix: compression import path (#24021)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgimalac authored Mar 22, 2024
1 parent 5136441 commit eb5280d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/system/dogstatsd/receive_and_forward_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"github.com/DataDog/datadog-agent/comp/metadata/host/hostimpl"
"github.com/DataDog/datadog-agent/pkg/metrics/servicecheck"
"github.com/DataDog/datadog-agent/pkg/serializer/compression"
"github.com/DataDog/datadog-agent/pkg/serializer/compression/utils"

pkgconfigsetup "github.com/DataDog/datadog-agent/pkg/config/setup"
)
Expand Down Expand Up @@ -46,8 +47,8 @@ func TestReceiveAndForward(t *testing.T) {
tests := map[string]struct {
kind string
}{
"zlib": {kind: compression.ZlibKind},
"zstd": {kind: compression.ZstdKind},
"zlib": {kind: utils.ZlibKind},
"zstd": {kind: utils.ZstdKind},
}

for name, tc := range tests {
Expand Down

0 comments on commit eb5280d

Please sign in to comment.