Skip to content

Commit

Permalink
Remove import cycle in render_test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Farries committed Apr 25, 2022
1 parent 672ff2e commit 75a1234
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions install/installer/pkg/common/render_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ package common
import (
"testing"

"github.com/gitpod-io/gitpod/installer/pkg/components/content_service"
"github.com/gitpod-io/gitpod/installer/pkg/components/dashboard"
"github.com/gitpod-io/gitpod/installer/pkg/components/server"
"github.com/gitpod-io/gitpod/installer/pkg/config/v1"
"github.com/gitpod-io/gitpod/installer/pkg/config/v1/experimental"
"github.com/gitpod-io/gitpod/installer/pkg/config/versions"
Expand Down Expand Up @@ -38,15 +35,15 @@ func TestReplicas(t *testing.T) {
ExpectedReplicas int32
}{
{
Component: server.Component,
Component: "server",
ExpectedReplicas: 123,
},
{
Component: dashboard.Component,
Component: "dashboard",
ExpectedReplicas: 456,
},
{
Component: content_service.Component,
Component: "content_service",
ExpectedReplicas: 1,
},
}
Expand Down

0 comments on commit 75a1234

Please sign in to comment.