From c3898fd4c5b0cb3498fc73e9802b5634d7e1708f Mon Sep 17 00:00:00 2001 From: Ermyas Abebe Date: Wed, 8 Nov 2023 09:06:23 +1100 Subject: [PATCH] Fix incorrect test name --- .../child/withdrawals/ChildERC20BridgeWithdrawToIMX.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/child/withdrawals/ChildERC20BridgeWithdrawToIMX.t.sol b/test/unit/child/withdrawals/ChildERC20BridgeWithdrawToIMX.t.sol index e69be526..1aea350d 100644 --- a/test/unit/child/withdrawals/ChildERC20BridgeWithdrawToIMX.t.sol +++ b/test/unit/child/withdrawals/ChildERC20BridgeWithdrawToIMX.t.sol @@ -105,7 +105,7 @@ contract ChildERC20BridgeWithdrawIMXToUnitTest is Test, IChildERC20BridgeEvents, childBridge.withdrawIMXTo{value: withdrawFee + withdrawAmount}(receiver, withdrawAmount); } - function test_WithdrawIMX_ReducesBalance() public { + function test_WithdrawIMXTo_ReducesBalance() public { uint256 withdrawFee = 300; uint256 withdrawAmount = 7 ether; @@ -117,7 +117,7 @@ contract ChildERC20BridgeWithdrawIMXToUnitTest is Test, IChildERC20BridgeEvents, assertEq(postBal, preBal - withdrawAmount - withdrawFee, "Balance not reduced"); } - function test_WithdrawIMX_PaysFee() public { + function test_WithdrawIMXTo_PaysFee() public { uint256 withdrawFee = 300; uint256 withdrawAmount = 7 ether;