Skip to content

Commit f388171

Browse files
committed
fixup: Respond to review feedback
1 parent b5b5b0a commit f388171

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/fixture/testnet/local/network.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ func (ln *LocalNetwork) AddLocalNode(w io.Writer, node *LocalNode, isEphemeral b
658658
return nil, err
659659
}
660660

661-
bootstrapIPs, bootstrapIDs, err := ln.GetBootstrapIPsAndIds()
661+
bootstrapIPs, bootstrapIDs, err := ln.GetBootstrapIPsAndIDs()
662662
if err != nil {
663663
return nil, err
664664
}
@@ -676,7 +676,7 @@ func (ln *LocalNetwork) AddLocalNode(w io.Writer, node *LocalNode, isEphemeral b
676676
return node, node.Start(w, ln.ExecPath)
677677
}
678678

679-
func (ln *LocalNetwork) GetBootstrapIPsAndIds() ([]string, []string, error) {
679+
func (ln *LocalNetwork) GetBootstrapIPsAndIDs() ([]string, []string, error) {
680680
// Collect staking addresses of running nodes for use in bootstrapping a node
681681
if err := ln.ReadNodes(); err != nil {
682682
return nil, nil, fmt.Errorf("failed to read local network nodes: %w", err)

tests/upgrade/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var _ = ginkgo.Describe("[Upgrade]", func() {
6262
// chances of a successful start.
6363
//
6464
// TODO(marun) Refactor node start to do this automatically
65-
bootstrapIPs, bootstrapIDs, err := network.GetBootstrapIPsAndIds()
65+
bootstrapIPs, bootstrapIDs, err := network.GetBootstrapIPsAndIDs()
6666
require.NoError(err)
6767
require.NotEmpty(bootstrapIDs)
6868
node.Flags[config.BootstrapIDsKey] = strings.Join(bootstrapIDs, ",")

0 commit comments

Comments
 (0)