@@ -49,7 +49,7 @@ contract AirdropERC20Test is BaseTest {
4949
5050 function test_state_airdrop () public {
5151 vm.prank (deployer);
52- drop.airdrop (address (erc20), address (tokenOwner), _contentsOne);
52+ drop.airdropERC20 (address (erc20), address (tokenOwner), _contentsOne);
5353
5454 for (uint256 i = 0 ; i < countOne; i++ ) {
5555 assertEq (erc20.balanceOf (_contentsOne[i].recipient), _contentsOne[i].amount);
@@ -60,13 +60,13 @@ contract AirdropERC20Test is BaseTest {
6060 function test_revert_airdrop_insufficientValue () public {
6161 vm.prank (deployer);
6262 vm.expectRevert ("Insufficient native token amount " );
63- drop.airdrop (CurrencyTransferLib.NATIVE_TOKEN, address (tokenOwner), _contentsOne);
63+ drop.airdropERC20 (CurrencyTransferLib.NATIVE_TOKEN, address (tokenOwner), _contentsOne);
6464 }
6565
6666 function test_revert_airdrop_notOwner () public {
6767 vm.startPrank (address (25 ));
6868 vm.expectRevert ("Not authorized. " );
69- drop.airdrop (address (erc20), address (tokenOwner), _contentsOne);
69+ drop.airdropERC20 (address (erc20), address (tokenOwner), _contentsOne);
7070 vm.stopPrank ();
7171 }
7272
@@ -75,7 +75,7 @@ contract AirdropERC20Test is BaseTest {
7575
7676 vm.startPrank (deployer);
7777 vm.expectRevert ("Not balance or allowance " );
78- drop.airdrop (address (erc20), address (tokenOwner), _contentsOne);
78+ drop.airdropERC20 (address (erc20), address (tokenOwner), _contentsOne);
7979 vm.stopPrank ();
8080 }
8181}
@@ -118,7 +118,7 @@ contract AirdropERC20AuditTest is BaseTest {
118118
119119 function test_process_payments_with_non_compliant_token () public {
120120 vm.prank (deployer);
121- drop.airdrop (address (erc20_nonCompliant), address (tokenOwner), _contentsOne);
121+ drop.airdropERC20 (address (erc20_nonCompliant), address (tokenOwner), _contentsOne);
122122
123123 // check balances after airdrop
124124 for (uint256 i = 0 ; i < countOne; i++ ) {
0 commit comments