Skip to content

Commit 29b8ddf

Browse files
authored
chore: fix api breakage (#2581)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. NOTE: PR titles should follow semantic commits: https://www.conventionalcommits.org/en/v1.0.0/ --> ## Overview type changed name in version bump <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. Ex: Closes #<issue number> -->
1 parent 36e5c9d commit 29b8ddf

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

test/docker-e2e/docker_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (s *DockerTestSuite) CreateDockerProvider(opts ...ConfigOption) tastoratype
6666
numValidators := 1
6767
numFullNodes := 0
6868
client, network := tastoradocker.DockerSetup(t)
69-
69+
7070
// Store client and network ID in the suite for later use
7171
s.dockerClient = client
7272
s.dockerNetworkID = network
@@ -76,11 +76,11 @@ func (s *DockerTestSuite) CreateDockerProvider(opts ...ConfigOption) tastoratype
7676
DockerClient: client,
7777
DockerNetworkID: network,
7878
ChainConfig: &tastoradocker.ChainConfig{
79-
Name: "celestia",
80-
NumValidators: &numValidators,
81-
NumFullNodes: &numFullNodes,
82-
ChainID: testChainID,
83-
Image: container.NewImage("ghcr.io/celestiaorg/celestia-app", "v4.0.0-rc6", "10001:10001"),
79+
Name: "celestia",
80+
NumValidators: &numValidators,
81+
NumFullNodes: &numFullNodes,
82+
ChainID: testChainID,
83+
Image: container.NewImage("ghcr.io/celestiaorg/celestia-app", "v4.0.0-rc6", "10001:10001"),
8484
Bin: "celestia-appd",
8585
Bech32Prefix: "celestia",
8686
Denom: "utia",
@@ -99,7 +99,7 @@ func (s *DockerTestSuite) CreateDockerProvider(opts ...ConfigOption) tastoratype
9999
},
100100
DataAvailabilityNetworkConfig: &tastoradocker.DataAvailabilityNetworkConfig{
101101
BridgeNodeCount: 1,
102-
Image: container.NewImage("ghcr.io/celestiaorg/celestia-node", "pr-4283", "10001:10001"),
102+
Image: container.NewImage("ghcr.io/celestiaorg/celestia-node", "pr-4283", "10001:10001"),
103103
},
104104
RollkitChainConfig: &tastoradocker.RollkitChainConfig{
105105
ChainID: "rollkit-test",
@@ -170,7 +170,7 @@ func (s *DockerTestSuite) CreateChain() tastoratypes.Chain {
170170
WithDockerClient(s.dockerClient).
171171
WithDockerNetworkID(s.dockerNetworkID).
172172
WithNode(tastoradocker.NewChainNodeConfigBuilder().
173-
WithNodeType(tastoradocker.ValidatorNodeType).
173+
WithNodeType(tastoratypes.NodeTypeValidator).
174174
Build()).
175175
Build(ctx)
176176

0 commit comments

Comments
 (0)