From 9defd5c5cff8bbd8c4d2b13b0a675071b2f820be Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 10 Jul 2024 10:49:32 -0400 Subject: [PATCH] fixed but with duplicate naming error --- contracts/gas-snapshots/ccip.gas-snapshot | 10 +++++----- .../applications/external/CCIPClientWithACKTest.t.sol | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/gas-snapshots/ccip.gas-snapshot b/contracts/gas-snapshots/ccip.gas-snapshot index 134846b15e..012bba85e0 100644 --- a/contracts/gas-snapshots/ccip.gas-snapshot +++ b/contracts/gas-snapshots/ccip.gas-snapshot @@ -35,15 +35,15 @@ BurnWithFromMintTokenPool_lockOrBurn:test_PoolBurnRevertNotHealthy_Revert() (gas BurnWithFromMintTokenPool_lockOrBurn:test_PoolBurn_Success() (gas: 243568) BurnWithFromMintTokenPool_lockOrBurn:test_Setup_Success() (gas: 24260) CCIPClientTest:test_HappyPath_Success() (gas: 192504) -CCIPClientTest:test_ccipReceiveAndSendAck_Success() (gas: 331795) -CCIPClientTest:test_ccipReceiver_ack_with_invalidAckMessageHeaderBytes_Revert() (gas: 438714) -CCIPClientTest:test_ccipSendAndReceiveAck_in_return_Success() (gas: 348231) CCIPClientTest:test_ccipSend_withNonNativeFeetoken_andDestTokens_Success() (gas: 325792) CCIPClientTest:test_ccipSend_withNonNativeFeetoken_andNoDestTokens_Success() (gas: 218834) -CCIPClientTest:test_ccipSend_withNonNativeFeetoken_andNoDestTokens_Success() (gas: 241532) CCIPClientTest:test_ccipSend_with_NativeFeeToken_andDestTokens_Success() (gas: 376797) CCIPClientTest:test_modifyFeeToken_Success() (gas: 74452) -CCIPClientTest:test_send_tokens_that_are_not_feeToken_Success() (gas: 552182) +CCIPClientWithACKTest:test_ccipReceiveAndSendAck_Success() (gas: 331795) +CCIPClientWithACKTest:test_ccipReceiver_ack_with_invalidAckMessageHeaderBytes_Revert() (gas: 438714) +CCIPClientWithACKTest:test_ccipSendAndReceiveAck_in_return_Success() (gas: 348231) +CCIPClientWithACKTest:test_ccipSend_withNonNativeFeetoken_andNoDestTokens_Success() (gas: 241532) +CCIPClientWithACKTest:test_send_tokens_that_are_not_feeToken_Success() (gas: 552182) CCIPConfigSetup:test_getCapabilityConfiguration_Success() (gas: 9495) CCIPConfig_ConfigStateMachine:test__computeConfigDigest_Success() (gas: 70755) CCIPConfig_ConfigStateMachine:test__computeNewConfigWithMeta_InitToRunning_Success() (gas: 357994) diff --git a/contracts/src/v0.8/ccip/test/applications/external/CCIPClientWithACKTest.t.sol b/contracts/src/v0.8/ccip/test/applications/external/CCIPClientWithACKTest.t.sol index 7907c25e8d..a2f2ba645c 100644 --- a/contracts/src/v0.8/ccip/test/applications/external/CCIPClientWithACKTest.t.sol +++ b/contracts/src/v0.8/ccip/test/applications/external/CCIPClientWithACKTest.t.sol @@ -12,7 +12,7 @@ import {EVM2EVMOnRampSetup} from "../../onRamp/EVM2EVMOnRampSetup.t.sol"; import {IERC20} from "../../../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol"; -contract CCIPClientTest is EVM2EVMOnRampSetup { +contract CCIPClientWithACKTest is EVM2EVMOnRampSetup { event MessageFailed(bytes32 indexed messageId, bytes reason); event MessageSucceeded(bytes32 indexed messageId); event MessageRecovered(bytes32 indexed messageId);