From 26c12cc3c0ef19b76b3be334016c51a00a76989f Mon Sep 17 00:00:00 2001 From: AnieeG Date: Mon, 16 Oct 2023 08:12:39 -0700 Subject: [PATCH] fix DON resource set up --- integration-tests/ccip-tests/testsetups/ccip.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/ccip-tests/testsetups/ccip.go b/integration-tests/ccip-tests/testsetups/ccip.go index aedee2f67d..ae0da03602 100644 --- a/integration-tests/ccip-tests/testsetups/ccip.go +++ b/integration-tests/ccip-tests/testsetups/ccip.go @@ -391,7 +391,7 @@ func NewCCIPTestConfig(t *testing.T, lggr zerolog.Logger, tType string) *CCIPTes var allError error nodeMem, _ := utils.GetEnv("CCIP_NODE_MEM") nodeCPU, _ := utils.GetEnv("CCIP_NODE_CPU") - DONResourceProfile["resources"] = SetResourceProfile("2", "4Gi", nodeCPU, nodeMem) + DONResourceProfile = SetResourceProfile("2", "4Gi", nodeCPU, nodeMem) dbMem, _ := utils.GetEnv("CCIP_DB_MEM") dbCPU, _ := utils.GetEnv("CCIP_DB_CPU")