Skip to content

Commit

Permalink
use suggested names
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Apr 10, 2024
1 parent 6c38f6a commit 23fe816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/test/Gateway.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ contract GatewayTest is Test {
assertEq(fee, 20000000000000001);
}

function testSendTokenWithZeroFeeToForeignDestWithInvalidFee() public {
function testSendTokenWithZeroInvalidFeeToForeignDest() public {
// Let gateway lock up to 1 tokens
token.approve(address(gateway), 1);

Expand All @@ -928,7 +928,7 @@ contract GatewayTest is Test {
IGateway(address(gateway)).sendToken{value: fee}(address(token), destPara, recipientAddress32, 0, 1);
}

function testSendTokenWithLargeFeeToForeignDestWithInvalidFee() public {
function testSendTokenWithLargeInvalidFeeoForeignDest() public {
// Let gateway lock up to 1 tokens
token.approve(address(gateway), 1);

Expand Down

0 comments on commit 23fe816

Please sign in to comment.