From b69ebba23eac155a1433fe29bb7c29318caf1198 Mon Sep 17 00:00:00 2001
From: Ryan Hall <hall.ryan.r@gmail.com>
Date: Mon, 5 Aug 2024 16:33:21 -0400
Subject: [PATCH] fix misleading comments

---
 core/capabilities/ccip/ccip_integration_tests/helpers.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/capabilities/ccip/ccip_integration_tests/helpers.go b/core/capabilities/ccip/ccip_integration_tests/helpers.go
index 4a1218e4c7..1e52d54e24 100644
--- a/core/capabilities/ccip/ccip_integration_tests/helpers.go
+++ b/core/capabilities/ccip/ccip_integration_tests/helpers.go
@@ -703,7 +703,7 @@ func wireOnRamp(t *testing.T, uni onchainUniverse, universes map[uint64]onchainU
 			continue
 		}
 		onrampSourceChainConfigArgs = append(onrampSourceChainConfigArgs, evm_2_evm_multi_onramp.EVM2EVMMultiOnRampDestChainConfigArgs{
-			DestChainSelector: getSelector(remoteChainID), // for each destination chain, add a source chain config
+			DestChainSelector: getSelector(remoteChainID),
 			Router:            uni.router.Address(),
 		})
 	}
@@ -721,7 +721,7 @@ func wireOffRamp(t *testing.T, uni onchainUniverse, universes map[uint64]onchain
 			continue
 		}
 		offrampSourceChainConfigArgs = append(offrampSourceChainConfigArgs, evm_2_evm_multi_offramp.EVM2EVMMultiOffRampSourceChainConfigArgs{
-			SourceChainSelector: getSelector(remoteChainID), // for each destination chain, add a source chain config
+			SourceChainSelector: getSelector(remoteChainID),
 			IsEnabled:           true,
 			Router:              uni.router.Address(),
 			OnRamp:              remoteUniverse.onramp.Address().Bytes(),