Skip to content

Commit

Permalink
fix: use correct WS url within tests (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 authored Jul 1, 2024
1 parent 108a427 commit 032706d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/common/test_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ func (m *OCRv2TestState) DeployContracts(contractsDir string) {

// CreateJobs creating OCR jobs and EA stubs
func (m *OCRv2TestState) CreateJobs() {
// Setting up RPC
c := rpc.New(*m.Config.TestConfig.Common.RPCURL)
wsc, err := ws.Connect(testcontext.Get(m.Config.T), *m.Config.TestConfig.Common.WsURL)
// Setting up RPC used for external network funding
c := rpc.New(m.Common.ChainDetails.RPCURLExternal)
wsc, err := ws.Connect(testcontext.Get(m.Config.T), m.Common.ChainDetails.WSURLExternal)
require.NoError(m.Config.T, err, "Error connecting to websocket client")

relayConfig := job.JSONConfig{
Expand Down

0 comments on commit 032706d

Please sign in to comment.