Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Jul 15, 2024
1 parent f879a1a commit 53a5b86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ jobs:
runId: ${{ github.run_id }}
testLogCollect: ${{ vars.TEST_LOG_COLLECT }}
selectedNetworks: SIMULATED_1,SIMULATED_2
chainlinkVersion: ${{ github.sha }}
chainlinkVersion: ${{ inputs.evm-ref || github.sha }}
logstreamLogTargets: ${{ vars.LOGSTREAM_LOG_TARGETS }}

## Run this step when changes that require tests to be run are made
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/ccip-tests/testconfig/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func NewConfig() (*Config, error) {
// load config overrides from env var if specified
// there can be multiple overrides separated by comma
rawConfigs, _ := osutil.GetEnv(OVERIDECONFIG)
if rawConfigs == "" {
if rawConfigs != "" {
for _, rawConfig := range strings.Split(rawConfigs, ",") {
err = DecodeConfig(rawConfig, &override)
if err != nil {
Expand Down

0 comments on commit 53a5b86

Please sign in to comment.