Skip to content

Commit

Permalink
integration-tests: update ports
Browse files Browse the repository at this point in the history
  • Loading branch information
cfal committed Aug 9, 2023
1 parent af7a0e6 commit 5c53a24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration-tests/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ ListenAddresses = ['0.0.0.0:6690']

func (c *Common) SetLocalEnvironment() {
var nodeDetails []*environment.ChainlinkNodeDetail
var basePort = 6688
var basePort = 50100
for i := 0; i < c.NodeCount; i++ {
dbLocalIP := fmt.Sprintf("postgresql://postgres:postgres@host.docker.internal:5432/cosmos_test_%d?sslmode=disable", i+1)
nodeDetails = append(nodeDetails, &environment.ChainlinkNodeDetail{
Expand Down
4 changes: 1 addition & 3 deletions integration-tests/ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,11 @@ func TestOCRBasic(t *testing.T) {
_, err = cg.AcceptProposal(string(parsedInput), ocrAddress)
require.NoError(t, err, "Could not accept proposed config")

p2pPort := "6690"

p2pPort := "50200"
err = chainlinkClient.CreateJobsForContract(
commonConfig.ChainId,
p2pPort,
commonConfig.MockUrl,
commonConfig.ObservationSource,
commonConfig.JuelsPerFeeCoinSource,
ocrAddress)
require.NoError(t, err, "Could not create jobs for contract")
Expand Down

0 comments on commit 5c53a24

Please sign in to comment.