From 73bcc17529feaeba08dcae3b3d7dceecfab919a8 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 15 Nov 2024 10:51:59 -0500 Subject: [PATCH] attempt lint fix and comment --- integration-tests/smoke/ccip_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/integration-tests/smoke/ccip_test.go b/integration-tests/smoke/ccip_test.go index bc9592fb265..ec99efe06ce 100644 --- a/integration-tests/smoke/ccip_test.go +++ b/integration-tests/smoke/ccip_test.go @@ -279,6 +279,8 @@ func TestTokenTransfer(t *testing.T) { require.Equal(t, twoCoins, balance) } +// setupTokens deploys transferable tokens on the source and dest, mints tokens for the source and dest, and +// approves the router to spend the tokens func setupTokens(t *testing.T, tenv ccdeploy.DeployedEnv) (srcToken *burn_mint_erc677.BurnMintERC677, dstToken *burn_mint_erc677.BurnMintERC677) { lggr := logger.TestLogger(t) @@ -730,7 +732,4 @@ func Test_PricingForTokenTransfers(t *testing.T) { require.Error(t, err) require.Nil(t, tx) }) - } - -