Skip to content

Commit

Permalink
rename image
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Nov 19, 2024
1 parent c1d1dfe commit 52309d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration-tests/ccip-tests/testsetups/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ func NewLocalDevEnvironmentWithRMN(
config,
testCfg.CCIP.RMNConfig.GetProxyImage(),
testCfg.CCIP.RMNConfig.GetProxyVersion(),
testCfg.CCIP.RMNConfig.GetAFNImage(),
testCfg.CCIP.RMNConfig.GetAFNVersion(),
testCfg.CCIP.RMNConfig.GetAFN2ProxyImage(),
testCfg.CCIP.RMNConfig.GetAFN2ProxyVersion(),
dockerenv.LogStream,
)
require.NoError(t, err)
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/testconfig/ccip/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ func (r *RMNConfig) GetProxyVersion() string {
return version
}

func (r *RMNConfig) GetAFNImage() string {
func (r *RMNConfig) GetAFN2ProxyImage() string {
image := pointer.GetString(r.AFNImage)
if image == "" {
return ctfconfig.MustReadEnvVar_String(E2E_RMN_AFN2PROXY_IMAGE)
}
return image
}

func (r *RMNConfig) GetAFNVersion() string {
func (r *RMNConfig) GetAFN2ProxyVersion() string {
version := pointer.GetString(r.AFNVersion)
if version == "" {
return ctfconfig.MustReadEnvVar_String(E2E_RMN_AFN2PROXY_VERSION)
Expand Down

0 comments on commit 52309d8

Please sign in to comment.