Skip to content

Commit

Permalink
fix(rpc-tests): Fix node port to execute tests on macOS (#3223)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimartiro committed Apr 27, 2023
1 parent 32f1aa8 commit f758575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (n *Node) setDefaults(t *testing.T) {
}

if n.tomlConfig.Network.Port == 0 {
const basePort uint16 = 7000
const basePort uint16 = 7004
n.tomlConfig.Network.Port = basePort + uint16(*n.index)
}

Expand Down

0 comments on commit f758575

Please sign in to comment.