Skip to content

Commit

Permalink
Merge conflict fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tateexon committed Sep 27, 2023
1 parent 453048e commit 09f4b4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ jobs:
strategy:
matrix:
image:
- name: (base)
- name: (legacy)
tag-suffix: ""
- name: (plugins)
tag-suffix: -plugins
Expand Down
6 changes: 2 additions & 4 deletions integration-tests/docker/test_env/test_env_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,7 @@ func (b *CLTestEnvBuilder) Build() (*CLClusterTestEnv, error) {
return nil, errors.New("cannot create nodes with custom config without nonDevNetworks")
}

err = b.te.StartClNodes(b.clNodeConfig, b.clNodesCount)
err = te.StartClNodes(b.clNodeConfig, b.clNodesCount, b.secretsConfig)
err = b.te.StartClNodes(b.clNodeConfig, b.clNodesCount, b.secretsConfig)
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -263,8 +262,7 @@ func (b *CLTestEnvBuilder) Build() (*CLClusterTestEnv, error) {
node.SetChainConfig(cfg, wsUrls, httpUrls, networkConfig, b.hasForwarders)
}

err := b.te.StartClNodes(cfg, b.clNodesCount)
err := te.StartClNodes(cfg, b.clNodesCount, b.secretsConfig)
err := b.te.StartClNodes(cfg, b.clNodesCount, b.secretsConfig)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 09f4b4c

Please sign in to comment.