Skip to content

Commit

Permalink
Fix circular go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalKorepta committed Oct 10, 2024
1 parent 30da9f7 commit 8c03e67
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions charts/console/chart_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"testing"

fuzz "github.com/google/gofuzz"
"github.com/redpanda-data/helm-charts/charts/redpanda"
"github.com/redpanda-data/helm-charts/pkg/gotohelm/helmette"
"github.com/redpanda-data/helm-charts/pkg/helm"
"github.com/redpanda-data/helm-charts/pkg/kube"
Expand Down Expand Up @@ -196,7 +195,7 @@ func TestGoHelmEquivalence(t *testing.T) {
})
require.NoError(t, err)

helmObjs, err := kube.DecodeYAML(rendered, redpanda.Scheme)
helmObjs, err := kube.DecodeYAML(rendered, Scheme)
require.NoError(t, err)

slices.SortStableFunc(helmObjs, func(a, b kube.Object) int {
Expand Down

0 comments on commit 8c03e67

Please sign in to comment.