Commit addeaa24 authored by Maurelian's avatar Maurelian

ctb: Fix FeeVault test names

parent 8ef35b07
...@@ -21,12 +21,12 @@ contract FeeVault_Test is Bridge_Initializer { ...@@ -21,12 +21,12 @@ contract FeeVault_Test is Bridge_Initializer {
vm.etch(Predeploys.L1_FEE_VAULT, address(new L1FeeVault(recipient)).code); vm.etch(Predeploys.L1_FEE_VAULT, address(new L1FeeVault(recipient)).code);
} }
function test_constructor() external { function test_constructor_succeeds() external {
assertEq(baseFeeVault.RECIPIENT(), recipient); assertEq(baseFeeVault.RECIPIENT(), recipient);
assertEq(l1FeeVault.RECIPIENT(), recipient); assertEq(l1FeeVault.RECIPIENT(), recipient);
} }
function test_minWithdrawalAmount() external { function test_minWithdrawalAmount_succeeds() external {
assertEq(baseFeeVault.MIN_WITHDRAWAL_AMOUNT(), 10 ether); assertEq(baseFeeVault.MIN_WITHDRAWAL_AMOUNT(), 10 ether);
assertEq(l1FeeVault.MIN_WITHDRAWAL_AMOUNT(), 10 ether); assertEq(l1FeeVault.MIN_WITHDRAWAL_AMOUNT(), 10 ether);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment